15 lines
383 B
C#
Raw Normal View History

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