mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-06 15:33:11 +00:00
19 lines
454 B
C#
19 lines
454 B
C#
namespace DiscordRewards
|
|
{
|
|
public class RewardConfig
|
|
{
|
|
public const string UsernameTag = "<USER>";
|
|
|
|
public RewardConfig(ulong roleId, string message, CheckConfig checkConfig)
|
|
{
|
|
RoleId = roleId;
|
|
Message = message;
|
|
CheckConfig = checkConfig;
|
|
}
|
|
|
|
public ulong RoleId { get; }
|
|
public string Message { get; }
|
|
public CheckConfig CheckConfig { get; }
|
|
}
|
|
}
|