LinkedDecryptKey.cs 572 B

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