1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Result.App.FileLibrary
- {
-
-
-
- public class FileLibraryResult
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string FileName { get; set; }
-
-
-
- public string FileType { get; set; }
-
-
-
- public string FileUrl { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public DateTime? CreatedData { get; set; }
-
-
-
-
- public int Size { get; set; }
- }
- }
|