AipFileOptions.cs 497 B

1234567891011121314
  1. using Microsoft.InformationProtection;
  2. namespace Aip.Service.Aip.Models;
  3. public class AipFileOptions
  4. {
  5. public string LabelId { get; set; } = string.Empty;
  6. public string TemplateId { get; set; } = string.Empty;
  7. public string Comments { get; set; } = string.Empty;
  8. public string FileName { get; set; } = string.Empty;
  9. public string OutputName { get; set; } = string.Empty;
  10. public bool IsAuditDiscoveryEnabled = false;
  11. public bool GenerateChangeAuditEvent = false;
  12. }