Infrastructure/OpenAuth.App/Common/JPushClientConfig.cs

21 lines
418 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Common
{
public class JPushClientConfig
{
/// <summary>
/// key
/// </summary>
public string AppKey { get; set; }
/// <summary>
/// secret
/// </summary>
public string MasterSecret { get; set; }
}
}