mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-29 17:15:34 +01:00
15 lines
318 B
C#
15 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);
|
|
}
|
|
}
|
|
}
|