IGrantee.cs 412 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (C) Alibaba Cloud Computing
  3. * All rights reserved.
  4. *
  5. * 版权所有 (C)阿里云计算有限公司
  6. */
  7. namespace Aliyun.OSS
  8. {
  9. /// <summary>
  10. /// 表示被授权者的信息。
  11. /// </summary>
  12. public interface IGrantee
  13. {
  14. /// <summary>
  15. /// 获取或设置被授权者的标识。
  16. /// </summary>
  17. string Identifier { get; set; }
  18. }
  19. }