app/BTCPayApp.Core/Models/AppInstanceInfo.cs
2025-01-16 13:35:11 +01:00

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; }
}