Files
2023-03-28 18:03:41 +02:00

31 lines
685 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.MONO.Data.DbModels
{
/// <summary>
/// Tabella Codifica Stati
/// </summary>
public class ParetoStatusModel
{
#region Public Properties
/// <summary>
/// UID
/// </summary>
[Key]
public string CodStatus { get; set; } = "";
/// <summary>
/// Durata totale stato
/// </summary>
public float TotDuration { get; set; } = 0;
#endregion Public Properties
}
}