mirror of
https://github.com/bitwarden/server.git
synced 2025-04-19 03:58:13 -05:00

* 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
11 lines
375 B
C#
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/";
|
|
}
|