初始化版本
This commit is contained in:
38
tongxin/NetWorkHelper/IBase/MapItem.cs
Normal file
38
tongxin/NetWorkHelper/IBase/MapItem.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
namespace NetWorkHelper.IBase
|
||||
{
|
||||
/// <summary>
|
||||
/// MapItem 映射项。
|
||||
/// </summary>
|
||||
public class MapItem
|
||||
{
|
||||
#region 构造函数
|
||||
public MapItem()
|
||||
{
|
||||
}
|
||||
|
||||
public MapItem(string theSource, string theTarget)
|
||||
{
|
||||
this.source = theSource;
|
||||
this.target = theTarget;
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Source
|
||||
private string source;
|
||||
public string Source
|
||||
{
|
||||
get { return source; }
|
||||
set { source = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Target
|
||||
private string target;
|
||||
public string Target
|
||||
{
|
||||
get { return target; }
|
||||
set { target = value; }
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user