12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System.Diagnostics.Eventing.Reader;
- namespace AipDatabase.API.Models
- {
- public class LinkedApiKey
- {
- public Int64 rowNum { get; set; }
- public int server_id { get; set; }
- public int system_id { get; set; }
- public int api_id { get; set; }
- public string api_key { get; set; }
- public string expired_at { get; set; }
- public bool policy_lookup_yn { get; set; }
- public bool file_info_lookup_yn { get; set; }
- public bool apply_label_yn { get; set; }
- public bool release_label_yn { get; set; }
- public bool encryption_file_yn { get; set; }
- public bool decryption_file_yn { get; set; }
- public LinkedApiKey(Int64 rowNum, int serverId, int systemId, int apiId, string apiKey, string expiredAt,
- bool policyLookupYn, bool fileInfoLookupYn, bool applyLabelYn, bool releaseLabelYn, bool encryptionFileYn, bool decryptionFileYn)
- {
- this.rowNum = rowNum;
- this.server_id = serverId;
- this.system_id = systemId;
- this.api_id = apiId;
- this.api_key = apiKey;
- this.expired_at = expiredAt;
- this.policy_lookup_yn = policyLookupYn;
- this.file_info_lookup_yn = fileInfoLookupYn;
- this.apply_label_yn = applyLabelYn;
- this.release_label_yn = releaseLabelYn;
- this.encryption_file_yn = encryptionFileYn;
- this.decryption_file_yn = decryptionFileYn;
- }
- }
- }
|