/*
* Namespace Summary
* Copyright (C) 2005+ Bogdan Damian Constantin
* E-Mail: damianbcpetro@gmail.com
* WEB: http://www.sourceforge.net/projects/dataholder
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License 2.1 or later, as
* published by the Free Software Foundation. See the included License.txt
* or http://www.gnu.org/copyleft/lesser.html for details.
*
*/
using System;
namespace DataHolder.DataPersistence.DBAProvider{
/// <summary>
/// Summary description for GenericDataRelationProperties.
/// </summary>
public class RelationPropertyMapping
{
private string l_MasterProperty;
private string l_DetailProperty;
public RelationPropertyMapping(string p_MasterProperty, string p_DetailProperty)
{
l_MasterProperty = p_MasterProperty;
l_DetailProperty = p_DetailProperty;
}
public string MasterProperty
{
get{return l_MasterProperty;}
}
public string DetailProperty
{
get{return l_DetailProperty;}
}
}
}
|