Files
mapo-core/MP.Core/DTO/repartiDTO.cs
T
Samuele Locatelli 72aeca2f13 SPEC:
- ok conteggio amcchine/operatori su gruppi
2025-04-15 17:44:39 +02:00

29 lines
678 B
C#

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