基础服务api
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

27 linhas
776 B

  1. using Furion.ConfigurableOptions;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.Manage.Application.System.Dtos
  8. {
  9. public class CosInfoOptions : IConfigurableOptions
  10. {
  11. public string AppId { get; set; }
  12. public string Region { get; set; }
  13. public string Bucket { get; set; }
  14. public string SecretId { get; set; }
  15. public string SecretKey { get; set; }
  16. public CosInfoOptions(string appid, string region, string bucket, string secretId, string secretKey)
  17. {
  18. AppId = appid;
  19. Region = region;
  20. Bucket = bucket;
  21. SecretId = secretId;
  22. SecretKey = secretKey;
  23. }
  24. }
  25. }