Inital bot commit
This commit is contained in:
18
EventBot/Entities/GuildConfig.cs
Normal file
18
EventBot/Entities/GuildConfig.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user