namespace EntityFrameworkBasics { /// /// Our Settings database table representional model /// public class SettingsDataModel { /// /// The unique Id for this entry /// public string Id { get; set; } /// /// The settings name /// public string Name { get; set; } /// /// The settings value /// public string Value { get; set; } } }