/* * Copyright (C) Alibaba Cloud Computing * All rights reserved. * * 版权所有 (C)阿里云计算有限公司 */ namespace Aliyun.OSS { /// /// 表示被授权者的信息。 /// public interface IGrantee { /// /// 获取或设置被授权者的标识。 /// string Identifier { get; set; } } }