using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; // // This is here so CodeMaid doesn't reorganize this document // namespace MP.MONO.Data.DbModels { /// /// Vista virtuale x esito esecuzione task (es cleanup tabelle) /// [Table("TaskExec")] public class TaskExecModel { #region Public Properties /// /// ID /// [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int TaskID { get; set; } /// /// DataOra evento registrato /// public DateTime DtRif { get; set; } = DateTime.Now; /// /// Cod task eseguito /// public string CodTask { get; set; } = ""; /// /// Esito esecuzione registrato /// public string Result { get; set; } = ""; #endregion Public Properties } }