using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; 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; } }