12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System.Diagnostics.Eventing.Reader;
- namespace AipDatabase.API.Models
- {
- public class LinkedServer
- {
- public Int64 rowNum { get; set; }
- public int server_id { get; set; }
- public int system_id { get; set; }
- public string server_ip { get; set; }
- public string server_desc { get; set; }
- public string server_created_at { 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 LinkedServer(Int64 rowNum, int serverId, int systemId, string serverIpAddr, string serverDesc, string serverCreatedAt, 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.server_ip = serverIpAddr;
- this.server_desc = serverDesc;
- this.server_created_at = serverCreatedAt;
- 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;
- }
- }
- }
|