start work on payment tolerance feature

This commit is contained in:
Andrew Camilleri
2018-05-04 16:15:34 +02:00
parent 8a4da361fd
commit c3d73236e0
9 changed files with 44 additions and 4 deletions

View File

@@ -85,5 +85,13 @@ namespace BTCPayServer.Models.StoreViewModels
{
get; set;
} = new List<LightningNode>();
[Display(Name = "Consider the invoice paid even if the paid amount is ... % less than expected")]
[Range(0, 100)]
public double PaymentTolerance
{
get;
set;
}
}
}