GetBucketInventoryResult.cs 291 B

123456789101112
  1. using COSXML.Model.Tag;
  2. using COSXML.Transfer;
  3. namespace COSXML.Model.Bucket
  4. {
  5. public sealed class GetBucketInventoryResult : CosDataResult<InventoryConfiguration>
  6. {
  7. public InventoryConfiguration inventoryConfiguration {
  8. get{ return _data; }
  9. }
  10. }
  11. }