72aeca2f13
- ok conteggio amcchine/operatori su gruppi
29 lines
678 B
C#
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;
|
|
|
|
}
|
|
}
|