maksit-certs-ui/src/Models/LetsEncryptServer/Cache/Requests/PatchContactsRequest.cs

13 lines
284 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaksIT.Models.LetsEncryptServer.Cache.Requests {
public class PatchContactsRequest {
public List<PatchAction<string>> Contacts { get; set; }
}
}