mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 11:35:51 +01:00
13 lines
434 B
C#
13 lines
434 B
C#
#nullable enable
|
|
namespace BTCPayServer.Client.App.Models;
|
|
|
|
public class AppInstanceInfo
|
|
{
|
|
public string BaseUrl { get; set; } = null!;
|
|
public string ServerName { get; set; } = null!;
|
|
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; }
|
|
}
|