blob: 46ce50112889d48c6cdb3673f066b820d62228ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
namespace CrupestApi.Secrets;
public class SecretInfo
{
public SecretInfo(string key, string secret, string description, DateTime? expireTime, bool revoked, DateTime createdTime)
{
Key = key;
Secret = secret;
Description = description;
ExpireTime = expireTime;
Revoked = revoked;
CreateTime = createdTime;
}
public string Key { get; set; }
public string Secret { get; set; }
public string Description { get; set; }
public DateTime? ExpireTime { get; set; }
public bool Revoked { get; set; }
public DateTime CreateTime { get; set; }
}
|