34 lines
644 B
C#
34 lines
644 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
using COSXML.Utils;
|
|
/**
|
|
* Copyright (c) 2018 Tencent Cloud. All rights reserved.
|
|
* 11/2/2018 1:53:35 PM
|
|
* bradyxiao
|
|
*/
|
|
namespace COSXML.Common
|
|
{
|
|
public enum CosACL
|
|
{
|
|
/// <summary>
|
|
/// 私有读写
|
|
/// </summary>
|
|
[CosValue("private")]
|
|
PRIVATE = 0,
|
|
|
|
/// <summary>
|
|
/// 私有写公有读
|
|
/// </summary>
|
|
[CosValue("public-read")]
|
|
PUBLIC_READ,
|
|
|
|
/// <summary>
|
|
/// 公有读写
|
|
/// </summary>
|
|
[CosValue("public-read-write")]
|
|
PUBLIC_READ_WRITE,
|
|
}
|
|
}
|