mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
12 lines
290 B
C#
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; }
|
|
}
|