23 lines
824 B
C#
23 lines
824 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VOL.YSErp.Models
|
|||
|
{
|
|||
|
/*
|
|||
|
"ys": {
|
|||
|
"api_url": "https://c4.yonyoucloud.com",
|
|||
|
"app_key": "99355863c0ed4363b09f8511d48f67e4",
|
|||
|
"app_secret": "3ca452060b684ccc982836cd5f0b6116811cb8ce"
|
|||
|
},
|
|||
|
*/
|
|||
|
public class YSConfig
|
|||
|
{
|
|||
|
public string ApiUrl = "https://c4.yonyoucloud.com"; // 正式环境 -> c4, 测试环境 -> c1
|
|||
|
public string Appkey = "6fe5b0b6163e45c081cc9a40848d5840";//"08f9377fd9ae45219e7dd3fbebb9858a";//"99355863c0ed4363b09f8511d48f67e4";
|
|||
|
public string AppSecret = "ceeca798e84268a2d59f97c860e4c1223bf786df";//"8f4b0bf535fcdb6fa5b8ce5c630b740ddaa3b3be";//"3ca452060b684ccc982836cd5f0b6116811cb8ce";
|
|||
|
}
|
|||
|
}
|