This commit is contained in:
moxiliang
2025-10-24 14:08:41 +08:00
parent dcd9b20fb0
commit 7065cad6d7
479 changed files with 105341 additions and 647562 deletions

View 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
}
}