mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 22:58:28 +01:00
12 lines
391 B
C#
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; }
|
|
}
|