Files
Swarm/DysonNetwork.Sphere/Wallet/PaymentHandlers/ISubscriptionOrder.cs
2025-06-23 00:29:37 +08:00

19 lines
336 B
C#

using NodaTime;
namespace DysonNetwork.Sphere.Wallet.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; }
}