Files
LaDOSE/LaDOSE.Src/LaDOSE.DTO/EventDTO.cs
T

13 lines
312 B
C#

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