mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
18 lines
454 B
C#
18 lines
454 B
C#
#nullable disable
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class ReactionRoleV2 : DbEntity
|
|
{
|
|
public ulong GuildId { get; set; }
|
|
public ulong ChannelId { get; set; }
|
|
|
|
public ulong MessageId { get; set; }
|
|
|
|
[MaxLength(100)]
|
|
public string Emote { get; set; }
|
|
public ulong RoleId { get; set; }
|
|
public int Group { get; set; }
|
|
public int LevelReq { get; set; }
|
|
} |