13 lines
312 B
C#
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; }
|
|
};
|
|
} |