mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
12 lines
271 B
C#
12 lines
271 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Services;
|
|
|
|
public class ServerSettings
|
|
{
|
|
[Display(Name = "Server Name")]
|
|
public string ServerName { get; set; }
|
|
|
|
[Display(Name = "Contact URL")]
|
|
public string ContactUrl { get; set; }
|
|
}
|