1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-17 15:40:59 -05:00

send payment failed emails

This commit is contained in:
Kyle Spearrin
2019-02-14 11:49:39 -05:00
parent f70ececa9d
commit 67146cd4be
9 changed files with 77 additions and 6 deletions

View File

@ -0,0 +1,8 @@
namespace Bit.Core.Models.Mail
{
public class PaymentFailedViewModel : BaseMailModel
{
public decimal Amount { get; set; }
public bool MentionInvoices { get; set; }
}
}