btcpayserver/BTCPayApp.CommonServer/AppInstanceInfo.cs
2024-07-11 15:57:30 +02:00

12 lines
391 B
C#

namespace BTCPayApp.CommonServer;
public class AppInstanceInfo
{
public string BaseUrl { get; set; }
public string ServerName { get; set; }
public string? ContactUrl { get; set; }
public string? LogoUrl { get; set; }
public string? CustomThemeCssUrl { get; set; }
public string? CustomThemeExtension { get; set; }
public bool RegistrationEnabled { get; set; }
}