Files
DysonNetwork/DysonNetwork.Wallet/Payment/PaymentHandlers/ISubscriptionOrder.cs
2026-02-03 02:18:02 +08:00

19 lines
337 B
C#

using NodaTime;
namespace DysonNetwork.Wallet.Payment.PaymentHandlers;
public interface ISubscriptionOrder
{
public string Id { get; }
public string SubscriptionId { get; }
public Instant BegunAt { get; }
public Duration Duration { get; }
public string Provider { get; }
public string AccountId { get; }
}