mirror of
https://github.com/Readarr/Readarr
synced 2025-12-31 04:36:15 +01:00
13 lines
No EOL
305 B
C#
13 lines
No EOL
305 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);
|
|
}
|
|
}
|
|
} |