Files
nadekobot/NadekoBot.Core/Services/Database/Models/YtFollowedChannel.cs
2021-09-06 21:29:22 +02:00

10 lines
258 B
C#

namespace NadekoBot.Core.Services.Database.Models
{
public class YtFollowedChannel : DbEntity
{
public ulong ChannelId { get; set; }
public string YtChannelId { get; set; }
public string UploadMessage { get; set; }
}
}