public class SmartClientDefinition
{
private string _entryPoint = string.Empty;
public string EntryPointInstance
{
get
{
return _entryPoint;
}
set
{
_entryPoint = value;
}
}
private string _entryPointFileName = string.Empty;
public string EntryPointFileName
{
get
{
return _entryPointFileName;
}
set
{
_entryPointFileName = value;
}
}
private string [] _dependencies;
public string [] Dependencies
{
get
{
return _dependencies;
}
set
{
_dependencies = value;
}
}
}