123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using COSXML.Model.Tag;
- namespace COSXML.Model.Bucket
- {
- /// <summary>
- /// 获取 Bucket 防盗链配置
- /// <see href="https://cloud.tencent.com/document/product/436/32493"/>
- /// </summary>
- public sealed class GetBucketRefererResult : CosDataResult<RefererConfiguration>
- {
- public RefererConfiguration refererConfiguration {
- get{ return _data; }
- }
- }
- }
|