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