40 lines
758 B
C#
40 lines
758 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.Common
|
|
{
|
|
public class XIAOETongConfig
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public static string app_id { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public static string client_id { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public static string secret_key { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public static string grant_type { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public static string base_url { get; set; }
|
|
|
|
}
|
|
}
|