12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace wispro.sp.share
- {
- public class ViewDataUploadFilesResult
- {
- public string name { get; set; }
- public int size { get; set; }
- public string type { get; set; }
- public string url { get; set; }
- public string delete_url { get; set; }
- public string thumbnail_url { get; set; }
- public string delete_type { get; set; }
- }
- }
|