using System.ComponentModel.DataAnnotations; namespace MP.Core.DTO { // // This is here so CodeMaid doesn't reorganize this document // public class RepartiDTO { [Key] public string CodGruppo { get; set; } = "ND"; public string TipoGruppo { get; set; } = ""; public string DescrGruppo { get; set; } = "NONE"; public bool SelEnabled { get; set; } = false; public int CountMacc { get; set; } = 0; public int CountOpr { get; set; } = 0; } }