AipFileStatus.cs 374 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Microsoft.Identity.Client;
  7. namespace AipGateway.AIP
  8. {
  9. public class AipFileStatus
  10. {
  11. public bool IsProtected { get; set; }
  12. public bool IsLabeled { get; set; }
  13. public bool ContainsProtectedObjects { get; set; }
  14. }
  15. }