LinkedApiKey.cs 835 B

1234567891011121314151617181920212223242526272829303132
  1. using System.Collections;
  2. namespace Aip.Service.Entities;
  3. public class LinkedApiKey
  4. {
  5. public int ApiKeyId { get; set; }
  6. public string ApiKey { get; set; } = string.Empty;
  7. public bool policyLookupYn { get; set; }
  8. public bool fileInfoLookupYn { get; set; }
  9. public bool applyLabelYn { get; set; }
  10. public bool releaseLabelYn { get; set; }
  11. public bool encryptionFileYn { get; set; }
  12. public bool decryptionFileYn { get; set; }
  13. public DateTime ExpiredAt { get; set; } = DateTime.Now;
  14. public int ServerId { get; set; }
  15. public string ServerIpAddr { get; set; } = string.Empty;
  16. public string ServerDesc { get; set; } = string.Empty;
  17. public int SystemId { get; set; }
  18. public string SystemName { get; set; } = string.Empty;
  19. public Hashtable serverMap = new Hashtable();
  20. }