Files
nadekobot/src/NadekoBot/Db/Models/Reminder.cs
2021-12-19 05:14:11 +01:00

11 lines
324 B
C#

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; }
}