1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-01 04:45:35 +00:00
Radarr/NzbDrone.Core/Model/Xbmc/XbmcJsonResult.cs
2013-07-18 20:47:55 -07:00

9 lines
210 B
C#

namespace NzbDrone.Core.Model.Xbmc
{
public class XbmcJsonResult<T>
{
public string Id { get; set; }
public string JsonRpc { get; set; }
public T Result { get; set; }
}
}