123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.Model.PageEdit
- {
-
-
-
- public class CustomPageItem
- {
-
-
-
- public string Name { get; set; }
-
-
-
- public string FilePath { get; set; }
- }
- }
|