Files
LaDOSE/LaDOSE.Src/LaDOSE.DTO/BotEventResultDTO.cs
2022-07-30 18:22:49 +02:00

11 lines
240 B
C#

namespace LaDOSE.DTO
{
public class BotEventResultDTO
{
public int Id { get; set; }
public string Name { get; set; }
public string DiscordId { get; set; }
public bool Result { get; set; }
}
}