12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.Network.OssOperation
- {
- [Serializable]
- public class OssUploadTask
- {
-
-
-
- public string UploadOrder { get; set; }
-
-
-
- public List<string> DownloadBranchIds { get; set; }
-
-
-
- public int UploadImageType { get; set; }
-
-
-
- public List<string> UploadImages { get; set; }
- }
- }
|