LNURL POS Support (#3019)

This commit is contained in:
Andrew Camilleri
2021-10-29 10:27:33 +02:00
committed by GitHub
parent 31b7826dce
commit 25f84d000b
9 changed files with 354 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
using System.ComponentModel.DataAnnotations;
using BTCPayServer.Data;
using BTCPayServer.Services.Apps;
namespace BTCPayServer.Models.AppViewModels
@@ -65,5 +66,7 @@ namespace BTCPayServer.Models.AppViewModels
[Display(Name = "Custom CSS Code")]
public string EmbeddedCSS { get; set; }
public RequiresRefundEmail RequiresRefundEmail { get; set; } = RequiresRefundEmail.InheritFromStore;
public StoreData Store { get; set; }
}
}