1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.Model.PageEdit
- {
- public class CustomInsertModel
- {
-
-
-
- public string filepath { get; set; }
-
-
-
- public int width { get; set; }
-
-
-
- public int height { get; set; }
- }
- }
|