using System; namespace LaDOSE.DTO { public class EventDTO { public int Id { get; set; } public string Name { get; set; } /// Event date, mapped by convention from Event.Date. Used for time-series charts. public DateTime Date { get; set; } }; }