mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-05 13:27:54 +00:00
8 lines
167 B
C#
8 lines
167 B
C#
|
|
namespace PluralKit.Core;
|
||
|
|
|
||
|
|
public class PremiumAllowance
|
||
|
|
{
|
||
|
|
public int Id { get; }
|
||
|
|
public SystemId System { get; }
|
||
|
|
public int? IdChangesRemaining { get; }
|
||
|
|
}
|