12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using ComPDFKit.PDFDocument;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.Model.Dialog.HomePageToolsDialogs
- {
- public class HomePagePictureToPDFDialogModel
- {
-
-
-
- public ToPDFFileMode Mode = ToPDFFileMode.NewFiles;
-
-
-
- public string RearFileNameLabel = "";
-
-
-
- public string FrontFileNameLabel = "";
-
-
-
- public string FilePath = "";
-
-
-
- public string Password = "";
-
-
-
- public enum ToPDFFileMode
- {
-
-
-
- NewFiles,
-
-
-
- OneNewFile,
-
-
-
- SelectFileName
- }
- }
- }
|