elliebot/src/EllieBot/Db/Models/AutoTranslateChannel.cs
2024-04-14 23:36:32 +12:00

10 lines
No EOL
322 B
C#

#nullable disable
namespace EllieBot.Services.Database.Models;
public class AutoTranslateChannel : DbEntity
{
public ulong GuildId { get; set; }
public ulong ChannelId { get; set; }
public bool AutoDelete { get; set; }
public IList<AutoTranslateUser> Users { get; set; } = new List<AutoTranslateUser>();
}