CheckPasswordDialogModel.cs 601 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PDF_Office.Model.Dialog.ToolsDialogs.SaftyDialogs
  7. {
  8. public class CheckPasswordDialogModel
  9. {
  10. }
  11. public enum EnumPermissionsSet
  12. {
  13. None = 0,
  14. StatusAllowsDocumentChanges = 1<<1,
  15. StatusAllowsPrinting = 1 <<2,
  16. StatusAllowsHighQualityPrinting = 1<<3,
  17. StatusAllowsCopying = 1<<4,
  18. StatusAllowsDocumentAssembly = 1<<5,
  19. StatusAllowsFormFieldEntry = 1<<6,
  20. StatusAllowsCommenting = 1<<7
  21. }
  22. }