public static async Task <NotifiesItem[]> Message_Remind(int page) => MessageJson.FromJson(await BcyJson.Message_Remind(page)).Data.Notifies;
public static async Task <NotifiesItem[]> Message_ItemSetUpdate(int page) => MessageJson.FromJson(await BcyJson.Message_ItemSetUpdate(page)).Data.Notifies;
/// <summary> /// 我的消息 /// </summary> /// <param name="isPre">"n"</param> /// <param name="page">1</param> /// <param name="pageType">"notify" or "remind" or "itemsetupdate"</param> /// <returns></returns> private static async Task <NotifiesItem[]> Message(string isPre, int page, string pageType) => MessageJson.FromJson(await BcyJson.Message(isPre, page, pageType)).Data.Notifies;