using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace SHERPA.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("ListValue")] public partial class ListValueModel { public string TableName { get; set; } = null!; public string FieldName { get; set; } = null!; public string Value { get; set; } = null!; public string? Label { get; set; } public int? Ordinal { get; set; } } }