mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
11 lines
288 B
C#
11 lines
288 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class MaintenanceViewModel
|
|
{
|
|
[Display(Name = "Change domain")]
|
|
public string DNSDomain { get; set; }
|
|
public bool CanUseSSH { get; internal set; }
|
|
}
|
|
}
|