NadekoBot/NadekoBot.Core/Services/Database/Models/Reminder.cs

15 lines
383 B
C#
Raw Normal View History

2016-08-25 22:05:29 +00:00
using System;
namespace NadekoBot.Core.Services.Database.Models
2016-08-25 22:05:29 +00:00
{
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; }
}
}