123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace JiaZhiQuan.Common.AliVod
- {
- public class VodConfig
- {
- public string AccessKeyId { get; set; }
- public string AccessKeySecret { get; set; }
- public long DiaryCategoryIdProd { get; set; } = 1000628461;
- public long DiaryCategoryIdDev { get; set; } = 1000628460;
- public long GoodsCategoryIdProd { get; set; } = 1000628793;
- public long GoodsCategoryIdDev { get; set; } = 1000628792;
- public string AutofitDefaultWorkflow { get; set; } = "8dbdc8a0cfba27a4eb02264b1ac7dbc9";
- public string AutofitEncryptWorkflow { get; set; } = "689c43028cb8dc8a132a210cc9f12906";
- }
- }
|