mirror of
https://github.com/Sonarr/Sonarr
synced 2025-12-26 10:14:13 +01:00
14 lines
318 B
C#
14 lines
318 B
C#
using NzbDrone.Common.Serializer;
|
|
|
|
namespace NzbDrone.Common.Extensions
|
|
{
|
|
public static class ObjectExtensions
|
|
{
|
|
public static T JsonClone<T>(this T source)
|
|
where T : new()
|
|
{
|
|
var json = source.ToJson();
|
|
return Json.Deserialize<T>(json);
|
|
}
|
|
}
|
|
}
|