using System.ComponentModel.DataAnnotations.Schema;
#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
}
}