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