using System; using System.Collections.Generic; using System.Text; using COSXML.Utils; namespace COSXML.Common { public enum CosACL { /// /// 私有读写 /// [CosValue("private")] Private = 0, /// /// 私有写公有读 /// [CosValue("public-read")] PublicRead, /// /// 公有读写 /// [CosValue("public-read-write")] PublicReadWrite, } }