1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-19 03:58:13 -05:00
bitwarden/src/Core/Models/Mail/InvoiceUpcomingViewModel.cs
cyprain-okeke 6e6432c1d0
[PM 1538] Update subscription renewal reminder email message templates (#2865)
* Making changes for the help link

* Making changes for the PR comment

* default value in the view model itself

* Adjusting the image position

* Add more information to the plain text
2023-05-30 15:30:37 +01:00

11 lines
375 B
C#

namespace Bit.Core.Models.Mail;
public class InvoiceUpcomingViewModel : BaseMailModel
{
public decimal AmountDue { get; set; }
public DateTime DueDate { get; set; }
public List<string> Items { get; set; }
public bool MentionInvoices { get; set; }
public string UpdateBillingInfoUrl { get; set; } = "https://bitwarden.com/help/update-billing-info/";
}