remove depr. classes

This commit is contained in:
2013-09-16 23:34:26 +02:00
parent e522c8e30a
commit e45414bd51
@@ -1,28 +0,0 @@
namespace PocketSharp.Models
{
/// <summary>
/// Parameter
/// </summary>
public class Parameter
{
/// <summary>
/// Name of the parameter
/// </summary>
public string Name { get; set; }
/// <summary>
/// Value of the parameter
/// </summary>
public object Value { get; set; }
/// <summary>
/// Return a human-readable representation of this parameter
/// </summary>
/// <returns>String</returns>
public override string ToString()
{
return string.Format("{0}={1}", Name, Value);
}
}
}