1234567891011121314151617181920212223242526 |
- using System.Collections;
- namespace AipGateway.API.Domain.Entities
- {
- public class LinkedDecryptKey
- {
- public int DecryptKeyId { get; set; }
- public string DecryptKey { get; set; } = string.Empty;
- public DateTime ExpiredAt { get; set; } = DateTime.Now;
- public int ServerId { get; set; }
- public string ServerIpAddr { get; set; } = string.Empty;
- public string ServerDesc { get; set; } = string.Empty;
- public int SystemId { get; set; }
- public string SystemName { get; set; } = string.Empty;
-
- public Hashtable serverMap = new Hashtable();
- }
- }
|