Files
EventDiscordBot/EventBot/Entities/GuildConfig.cs
2019-06-18 19:17:06 +03:00

19 lines
472 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace EventBot.Entities
{
public class GuildConfig
{
[Key]
public ulong GuildId { get; set; }
public string Prefix { get; set; }
public ulong EventRoleConfirmationChannelId { get; set; }
public ulong ParticipantRoleId { get; set; }
public virtual ICollection<Event> Events { get; set; }
}
}