view SilverlightValidation/SilverlightValidation.PL/Interfaces/ICloneable.cs @ 96:188f8b366e87

Unit test project correctly setup as normal class library DLL.
author stevenhollidge <stevenhollidge@hotmail.com>
date Sat, 05 May 2012 13:29:56 +0100
parents SilverlightValidation/SilverlightValidation/Interfaces/ICloneable.cs@241e2f22ed3c
children d0c2cac12376
line wrap: on
line source

namespace SilverlightValidation.Interfaces
{
  public interface ICloneable<T>
  {
    T Clone();
  }
}