RestoreObjectResult.cs 373 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace COSXML.Model.Object
  5. {
  6. /// <summary>
  7. /// 对一个通过 COS 归档为 archive 类型的对象进行恢复返回的结果
  8. /// <see href="https://cloud.tencent.com/document/product/436/12633"/>
  9. /// </summary>
  10. public sealed class RestoreObjectResult : CosResult
  11. {
  12. }
  13. }