VodConfig.cs 719 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JiaZhiQuan.Common.AliVod
  5. {
  6. public class VodConfig
  7. {
  8. public string AccessKeyId { get; set; }
  9. public string AccessKeySecret { get; set; }
  10. public long DiaryCategoryIdProd { get; set; } = 1000628461;
  11. public long DiaryCategoryIdDev { get; set; } = 1000628460;
  12. public long GoodsCategoryIdProd { get; set; } = 1000628793;
  13. public long GoodsCategoryIdDev { get; set; } = 1000628792;
  14. public string AutofitDefaultWorkflow { get; set; } = "8dbdc8a0cfba27a4eb02264b1ac7dbc9";
  15. public string AutofitEncryptWorkflow { get; set; } = "689c43028cb8dc8a132a210cc9f12906";
  16. }
  17. }