- using Microsoft.InformationProtection;
- namespace Aip.Service.Aip.Models;
- public class AipFileOptions
- {
- public string LabelId { get; set; } = string.Empty;
- public string TemplateId { get; set; } = string.Empty;
- public string Comments { get; set; } = string.Empty;
- public string FileName { get; set; } = string.Empty;
- public string OutputName { get; set; } = string.Empty;
- public bool IsAuditDiscoveryEnabled = false;
- public bool GenerateChangeAuditEvent = false;
- }
|