Files
2025-11-14 16:12:32 +08:00

39 lines
775 B
C#

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