forked from EllieBotDevs/elliebot
7 lines
157 B
C#
7 lines
157 B
C#
|
namespace EllieBot.Db.Models;
|
||
|
|
||
|
public class AutoPublishChannel : DbEntity
|
||
|
{
|
||
|
public ulong GuildId { get; set; }
|
||
|
public ulong ChannelId { get; set; }
|
||
|
}
|