1
0
mirror of https://github.com/bitwarden/server synced 2025-12-28 06:03:29 +00:00
Files
server/src/Core/Models/Mail/InvoiceUpcomingViewModel.cs
Justin Baur 231eb84e69 Turn On ImplicitUsings (#2079)
* Turn on ImplicitUsings

* Fix formatting

* Run linter
2022-06-29 19:46:41 -04:00

11 lines
299 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; }
}
}