1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/NzbDrone.Test.Common/ObjectExtentions.cs

13 lines
299 B
C#
Raw Normal View History

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