mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
19 lines
419 B
C#
19 lines
419 B
C#
#nullable disable
|
|
namespace Nadeko.Bot.Db.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; }
|
|
public ReminderType Type { get; set; }
|
|
}
|
|
|
|
public enum ReminderType
|
|
{
|
|
User,
|
|
Timely
|
|
} |