Files
EventDiscordBot/EventBot/Entities/GuildConfig.cs
Karolis2011 e9f59780ed Adds role specific channels.
Read ME update

Updating tile of role will update revelant channels and roles.

Added command examples.

Fixese leaks
2019-08-01 20:25:28 +03:00

20 lines
533 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 ulong AutoRoleChannelCategoryId { get; set; }
public virtual ICollection<Event> Events { get; set; }
}
}