12345678910111213141516171819202122 |
- using System;
- using System.IO;
- using System.Collections.Generic;
- using COSXML.Model.Tag;
- using COSXML.Transfer;
- namespace COSXML.Model.CI
- {
-
-
-
- public sealed class GetVideoCensorJobResult : CosDataResult<VideoCensorResult>
- {
-
-
-
-
- public VideoCensorResult resultStruct {
- get {return _data; }
- }
- }
- }
|