mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
11 lines
248 B
C#
11 lines
248 B
C#
using MaksIT.Core.Abstractions.Webapi;
|
|
|
|
|
|
namespace MaksIT.Models.LetsEncryptServer.Account.Requests;
|
|
public class PatchHostnameRequest : PatchRequestModelBase {
|
|
public string? Hostname { get; set; }
|
|
|
|
public bool? IsDisabled { get; set; }
|
|
}
|
|
|