Files
limanapp/Core/DTO/TaskResultDTO.cs
2025-01-16 12:05:43 +01:00

23 lines
650 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 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>();
}
}