15 lines
331 B
C#
15 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WMS.Web.Domain.Options
|
|
{
|
|
public class JuShuiTanOptions
|
|
{
|
|
public string Url { get; set; }
|
|
public string AppKey { get; set; }
|
|
public string AppSecret { get; set; }
|
|
public string AccessToken { get; set; }
|
|
}
|
|
}
|