namespace Neo.Afx.Services.Integration
{
///
/// Defines a property
///
public class DataSourceProperty
{
///
/// Gets or sets the name.
///
public string Name
{
get;
set;
}
///
/// Gets or sets a value indicating whether the value is retrieved from an attribute.
///
public bool IsAttribute
{
get;
set;
}
}
}