12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using COSXML.Model.Tag;
- using COSXML.Transfer;
- using System.IO;
- namespace COSXML.Model.Service
- {
-
-
-
-
- public sealed class GetServiceResult : CosDataResult<ListAllMyBuckets>
- {
-
-
-
-
- public ListAllMyBuckets listAllMyBuckets {
- get {return _data; }
- }
- }
- }
|