using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable namespace MP.Data.DatabaseModels { [Table("ListValues")] public partial class ListValues { #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 } }