1234567891011121314151617181920212223242526272829 |
- /*-------------------------------------------------------------------------
- * 功能描述:RequestInfo
- * 作者:xulisong
- * 创建时间: 2018/12/19 14:54:53
- * 版本号:v1.0
- * -------------------------------------------------------------------------*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Com.FirmLib
- {
- public class RequestInfo
- {
- public RequestInfo(string head)
- {
- this.Head = head;
- }
- public RequestInfo(string head,object content):this(head)
- {
- this.Content = content;
- }
- public string Head { get; set; }
- public object Content { get; set; }
- }
- }
|