cbd4a90d01
- Correzione MSE i MSEModel x naming - fix e test vari su app CORE (IOC/SPEC/TAB3/MON)
32 lines
721 B
C#
32 lines
721 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
#nullable disable
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
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
|
|
}
|
|
} |