mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
9c95b98f3a
* Policies: Turn checkboxes into toggles * Move email policy to server email settings * Move maintenance policies to server maintenance settings * Policies: Adjust spacings * Policies: Remove DisableInstantNotifications setting * Wording updates * Move maintenance settings back
11 lines
260 B
C#
11 lines
260 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels;
|
|
|
|
public class MaintenanceViewModel
|
|
{
|
|
[Display(Name = "Domain name")]
|
|
public string DNSDomain { get; set; }
|
|
public bool CanUseSSH { get; internal set; }
|
|
}
|