24 lines
562 B
C#
24 lines
562 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MP.Core.DTO
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
|
|
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;
|
|
|
|
}
|
|
}
|