using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using static MP.Core.Objects.Enums; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DbModels { [NotMapped] public partial class TaskResultModel { #region Public Properties /// /// Tipo di task eseguito /// public string Task { get; set; } = ""; /// /// Risultato: >0 = successo, <0 = errore /// public int ExecResult { get; set; } = 0; /// /// Risultato esecuzione testuale /// public string TextResult { get; set; } = ""; #endregion Public Properties } }