using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; // // This is here so CodeMaid doesn't reorganize this document // namespace Maat.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 } }