mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
12 lines
339 B
C#
12 lines
339 B
C#
#nullable disable
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class Reminder : DbEntity
|
|
{
|
|
public DateTime When { get; set; }
|
|
public ulong ChannelId { get; set; }
|
|
public ulong ServerId { get; set; }
|
|
public ulong UserId { get; set; }
|
|
public string Message { get; set; }
|
|
public bool IsPrivate { get; set; }
|
|
} |