LinkedApiKey.cs 927 B

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