Lidarr/NzbDrone.Test.Common/ObjectExtentions.cs

13 lines
299 B
C#
Raw Normal View History

using NzbDrone.Common.Serializer;
2013-08-01 02:02:36 +00:00
namespace NzbDrone.Test.Common
{
public static class ObjectExtentions
{
public static T JsonClone<T>(this T source) where T : new()
2013-08-01 02:02:36 +00:00
{
var json = source.ToJson();
return Json.Deserialize<T>(json);
2013-08-01 02:02:36 +00:00
}
}
}