The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
622 B
27 lines
622 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Threading.Tasks; |
|
using Teknik.ViewModels; |
|
|
|
namespace Teknik.Areas.Users.ViewModels |
|
{ |
|
public class SubscriptionViewModel : SettingsViewModel |
|
{ |
|
public string SubscriptionId { get; set; } |
|
|
|
public string ProductId { get; set; } |
|
|
|
public string ProductName { get; set; } |
|
|
|
public decimal? Price { get; set; } |
|
|
|
public string Interval { get; set; } |
|
|
|
public long Storage { get; set; } |
|
|
|
public DateTime BillingPeriodEnd { get; set; } |
|
|
|
public bool Canceled { get; set; } |
|
} |
|
}
|
|
|