Radarr/NzbDrone.Core/Notifications/Xbmc/Model/XbmcJsonResult.cs

10 lines
224 B
C#
Raw Normal View History

2013-09-19 01:09:26 +00:00
namespace NzbDrone.Core.Notifications.Xbmc.Model
2012-12-13 21:52:54 +00:00
{
public class XbmcJsonResult<T>
{
public string Id { get; set; }
public string JsonRpc { get; set; }
public T Result { get; set; }
}
}