1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00
Files
Sonarr/src/NzbDrone.Common/Extensions/ObjectExtensions.cs
T
Mark McDowall 20782bbbc1 Episode import improvements
Fixed: Use folder name when file name is not parsable on import
2015-02-08 00:07:08 -08:00

13 lines
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);
}
}
}