mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
20 lines
446 B
C#
20 lines
446 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Models.LetsEncryptServer.Cache.Responses {
|
|
|
|
public class HostnameResponse {
|
|
public string Hostname { get; set; }
|
|
public DateTime Expires { get; set; }
|
|
public bool IsUpcomingExpire { get; set; }
|
|
}
|
|
|
|
|
|
public class GetHostnamesResponse {
|
|
public List<HostnameResponse> Hostnames { get; set; }
|
|
}
|
|
}
|