45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.MONO.Data.DbModels
|
|
{
|
|
/// <summary>
|
|
/// Tabella Codifica Stati
|
|
/// </summary>
|
|
[Table("CodStatus")]
|
|
public class CodStatusModel
|
|
{
|
|
#region Public Properties
|
|
|
|
/// <summary>
|
|
/// UID
|
|
/// </summary>
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int CodStatusId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Descrizione Stato
|
|
/// </summary>
|
|
[MaxLength(250)]
|
|
public string Description { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Classe css associata
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string CssClass { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Gruppo di classificazione
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string Group { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|