mirror of
https://github.com/bitwarden/server.git
synced 2025-07-17 23:50:58 -05:00

* Revert "Add git blame entry (#2226)" This reverts commit239286737d
. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a
.
11 lines
299 B
C#
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; }
|
|
}
|
|
}
|