基础服务api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CosInfoOptions.cs 776 B

11 months ago
1234567891011121314151617181920212223242526
  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. }