Files

21 lines
615 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwControlCenter.Core.DTO
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
public class TaskResultDTO : AuthDataDTO
{
/// <summary>
/// Payload informazione ricevuto come dizionario chiavi/valore, il valore potrebbe essere un info ulteriormente serializzata
/// </summary>
public Dictionary<string, string> DataPayload { get; set; } = new Dictionary<string, string>();
}
}