mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
11 lines
309 B
C#
11 lines
309 B
C#
using NadekoBot.Db.Models;
|
|
|
|
namespace NadekoBot.Modules.Utility.Patronage;
|
|
|
|
public readonly struct InsufficientTier
|
|
{
|
|
public FeatureType FeatureType { get; init; }
|
|
public string Feature { get; init; }
|
|
public PatronTier RequiredTier { get; init; }
|
|
public PatronTier UserTier { get; init; }
|
|
} |