12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using COSXML.Model.Tag;
- using COSXML.Transfer;
- namespace COSXML.Model.Object
- {
-
-
-
-
- public sealed class CopyObjectResult : CosDataResult<CopyObject>
- {
-
-
-
-
- public CopyObject copyObject {
- get {return _data; }
- }
- }
- }
|