using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DbModels { [Table("ListValues")] public partial class ListValuesModel { #region Public Properties [MaxLength(50)] public string TableName { get; set; } [MaxLength(50)] public string FieldName { get; set; } [MaxLength(50)] public string value { get; set; } [MaxLength(50)] public string label { get; set; } public int ordinal { get; set; } #endregion Public Properties } }