1234567891011121314151617181920212223242526272829 |
-
- 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; }
- }
- }
|