11 lines
No EOL
290 B
C#
11 lines
No EOL
290 B
C#
namespace Ellie.Modules.Patronage;
|
|
|
|
public interface ISubscriberData
|
|
{
|
|
public string UniquePlatformUserId { get; }
|
|
public ulong UserId { get; }
|
|
public int Cents { get; }
|
|
|
|
public DateTime? LastCharge { get; }
|
|
public SubscriptionChargeStatus ChargeStatus { get; }
|
|
} |