Add ability to associate custom CSS with a pull payment

This commit is contained in:
Umar Bolatov
2020-12-07 20:04:50 -08:00
parent 8a07c62603
commit 16e5e2d757
4 changed files with 28 additions and 4 deletions

View File

@@ -42,5 +42,10 @@ namespace BTCPayServer.Models.WalletViewModels
[Required]
[ReadOnly(true)]
public string Currency { get; set; }
[MaxLength(500)]
[Display(Name = "Custom bootstrap CSS file")]
public string CustomCSSLink { get; set; }
[Display(Name = "Custom CSS Code")]
public string EmbeddedCSS { get; set; }
}
}