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 valore MAchine Groups
///
[Table("MachineGroup")]
public class PMMGroupModel
{
///
/// Codice Univoco
///
[Key, DatabaseGenerated(DatabaseGeneratedOption.None), MaxLength(250)]
public string PMMGCode { get; set; } = "";
///
/// Descrizione
///
[MaxLength(500)]
public string Description { get; set; } = "";
}
}