Files
LaDOSE/LaDOSE.Src/LaDOSE.DTO/EventDTO.cs
Darkstack 0150402ca6 Rework the UI
Fix Score
Add Kiouze CSS
Rework the tournaments API
2022-03-22 00:14:46 +01:00

8 lines
143 B
C#

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