12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using JLHHJSvr.Com.Model;
- using LJLib.Net.SPI.Com;
- namespace JLHHJSvr.Com
- {
- /// <summary>
- /// 获取主页显示信息的数据
- /// </summary>
- public sealed class GetUserInfoRequest : ILJRequest<GetUserInfoResponse>
- {
- public string GetApiName()
- {
- return "GetUserInfo";
- }
- public string token { get; set; }
- }
- public sealed class GetUserInfoResponse : LJResponse
- {
- #region PC端附加
-
- #endregion
- }
- }
|