mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
* Server Settings: Customize instance name and add contact URL - The custom instance name would improve #5563 - Added contact URL closes #4806 * Fix custom logo display
14 lines
327 B
C#
14 lines
327 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Services;
|
|
|
|
public class ServerSettings
|
|
{
|
|
[Display(Name = "Server Name")]
|
|
public string ServerName { get; set; }
|
|
|
|
[Display(Name = "Contact URL")]
|
|
public string ContactUrl { get; set; }
|
|
}
|