3a5b77314a
- DTO e MOdelli NON riorganizzabili - refresh globale ordinamenti - test rebuild
32 lines
722 B
C#
32 lines
722 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.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
|
|
}
|
|
} |