mirror of
https://github.com/bitwarden/server
synced 2026-01-10 04:23:31 +00:00
subscription renewal reminder emails
This commit is contained in:
13
src/Core/Models/Mail/InvoiceUpcomingViewModel.cs
Normal file
13
src/Core/Models/Mail/InvoiceUpcomingViewModel.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user