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

8 lines
143 B
C#
Raw Permalink Normal View History

namespace LaDOSE.DTO
{
public class EventDTO
{
public int Id { get; set; }
public string Name { get; set; }
};
}