LinkedDecryptKey.cs 640 B

1234567891011121314151617181920212223242526
  1. using System.Collections;
  2. namespace AipGateway.API.Domain.Entities
  3. {
  4. public class LinkedDecryptKey
  5. {
  6. public int DecryptKeyId { get; set; }
  7. public string DecryptKey { get; set; } = string.Empty;
  8. public DateTime ExpiredAt { get; set; } = DateTime.Now;
  9. public int ServerId { get; set; }
  10. public string ServerIpAddr { get; set; } = string.Empty;
  11. public string ServerDesc { get; set; } = string.Empty;
  12. public int SystemId { get; set; }
  13. public string SystemName { get; set; } = string.Empty;
  14. public Hashtable serverMap = new Hashtable();
  15. }
  16. }