btcpayserver/BTCPayServer/Services/ServerSettings.cs
2024-07-25 18:57:28 +02:00

12 lines
290 B
C#

using System.ComponentModel.DataAnnotations;
namespace BTCPayServer.Services;
public class ServerSettings
{
[Display(Name = "Server Name")]
public string ServerName { get; set; } = "BTCPay Server";
[Display(Name = "Contact URL")]
public string ContactUrl { get; set; }
}