mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
13 lines
284 B
C#
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; }
|
|
}
|
|
}
|