You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Gateway/Proxy/Entities/SiteCert.cs

32 lines
450 B
C#

using UMC.Data;
namespace UMC.ITME.Entities;
public partial class SiteCert : Record
{
public string Domain { get; set; }
public string PublicKey { get; set; }
public string PrivateKey { get; set; }
public int? ExpirationTime
{
get; set;
}
public int? CheckTime
{
get; set;
}
public bool? IsApiumc
{
get; set;
}
public string SubDomain
{
get; set;
}
}