mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
15 lines
452 B
C#
15 lines
452 B
C#
#nullable disable
|
|
namespace NadekoBot.Db.Models;
|
|
|
|
public class Repeater
|
|
{
|
|
public int Id { get; set; }
|
|
public ulong GuildId { get; set; }
|
|
public ulong ChannelId { get; set; }
|
|
public ulong? LastMessageId { get; set; }
|
|
public string Message { get; set; }
|
|
public TimeSpan Interval { get; set; }
|
|
public TimeSpan? StartTimeOfDay { get; set; }
|
|
public bool NoRedundant { get; set; }
|
|
public DateTime DateAdded { get; set; }
|
|
} |