13 lines
408 B
C#
13 lines
408 B
C#
namespace BTCPayApp.Core.Models;
|
|
|
|
public class AppInstanceInfo
|
|
{
|
|
public required string BaseUrl { get; set; }
|
|
public required 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; }
|
|
}
|