mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
13 lines
314 B
C#
13 lines
314 B
C#
#nullable disable
|
|
using NadekoBot.Services.Database.Models;
|
|
|
|
namespace NadekoBot.Db.Models;
|
|
|
|
public class StreamOnlineMessage : DbEntity
|
|
{
|
|
public ulong ChannelId { get; set; }
|
|
public ulong MessageId { get; set; }
|
|
|
|
public FollowedStream.FType Type { get; set; }
|
|
public string Name { get; set; }
|
|
} |