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