12345678910111213141516171819202122232425 |
- using System;
- namespace GxPress.Result
- {
-
-
-
- public class PathResult
- {
-
- public string RelativePath { get; set; }
-
- public string AbsolutePath { get; set; }
-
-
-
- public string FileName { get; set; }
-
-
-
- public string FileType { get; set; }
- public int FileId { get; set; }
- }
- }
|