Files
LaDOSE/LaDOSE.Src/LaDOSE.DTO/BotEventResultDTO.cs

11 lines
240 B
C#
Raw Permalink Normal View History

2022-07-30 18:22:49 +02:00
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; }
}
}