using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace tApi.Actions.DTO { public class ReportDTO { public string title { get; set; } public string connectionString { get; set; } public string selectRead { get; set; } public string selectUpdate { get; set; } public FieldDTO[] fields { get; set; } public List readedRows { get; set; } public bool success { get; set; } public Exception exception { get; set; } public string message { get; set; } } }