2021-08-15 09:38:48 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Teknik.BillingCore.Models
|
|
|
|
|
{
|
|
|
|
|
public class Subscription
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string CustomerId { get; set; }
|
|
|
|
|
public SubscriptionStatus Status { get; set; }
|
2021-11-29 07:26:20 +01:00
|
|
|
|
public DateTime BillingPeriodEnd { get; set; }
|
|
|
|
|
public bool CancelAtBillingEnd { get; set; }
|
2021-08-15 09:38:48 +02:00
|
|
|
|
public List<Price> Prices { get; set; }
|
2021-11-14 05:28:24 +01:00
|
|
|
|
public string ClientSecret { get; set; }
|
2021-08-15 09:38:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|