19 lines
		
	
	
		
			336 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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; }
 | 
						|
}
 |