GetBucketLoggingResult.cs 347 B

123456789101112131415
  1. using COSXML.Model.Tag;
  2. using COSXML.Transfer;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace COSXML.Model.Bucket
  7. {
  8. public sealed class GetBucketLoggingResult : CosDataResult<BucketLoggingStatus>
  9. {
  10. public BucketLoggingStatus bucketLoggingStatus {
  11. get{ return _data; }
  12. }
  13. }
  14. }