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