mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 23:52:50 -05:00
Resolve RisksSubscriptionFailure bugs (#3790)
This commit is contained in:
@ -42,6 +42,7 @@ public class SubscriptionInfo
|
||||
{
|
||||
Items = sub.Items.Data.Select(i => new BillingSubscriptionItem(i));
|
||||
}
|
||||
CollectionMethod = sub.CollectionMethod;
|
||||
}
|
||||
|
||||
public DateTime? TrialStartDate { get; set; }
|
||||
@ -54,6 +55,7 @@ public class SubscriptionInfo
|
||||
public string Status { get; set; }
|
||||
public bool Cancelled { get; set; }
|
||||
public IEnumerable<BillingSubscriptionItem> Items { get; set; } = new List<BillingSubscriptionItem>();
|
||||
public string CollectionMethod { get; set; }
|
||||
|
||||
public class BillingSubscriptionItem
|
||||
{
|
||||
|
Reference in New Issue
Block a user