mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
4ae1046571
* 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
15 lines
327 B
C#
15 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; }
|
|
}
|