Files
2022-02-14 15:54:52 +01:00

23 lines
499 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.MONO.Core.DTO
{
public class TimeSerieDTO
{
public string Title { get; set; } = "";
/// <summary>
/// Lista eventi registrati
/// </summary>
public List<EvData> DataList { get; set; } = new List<EvData>();
}
}