20 lines
576 B
C#
20 lines
576 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace SHERPA.Data.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[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; }
|
|
}
|
|
}
|