選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

27 行
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.KitChenManageOrder.Core.Common
  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. }