mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
10 lines
258 B
C#
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; }
|
|
}
|
|
}
|