123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Result.NoticeFolder
- {
-
-
-
- public class NoticeFolderFindResult
- {
-
-
-
- public string FolderName { get; set; }
-
-
-
- public int Id { get; set; }
-
-
-
- public bool IsTop { get; set; }
-
-
-
- public int FileCount { get; set; }
- }
- }
|