parent
b547156d91
commit
02152d85a1
@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace NzbDrone.Core.Notifications.Xbmc.Model
|
||||
{
|
||||
public class KodiSource
|
||||
{
|
||||
public int SourceId { get; set; }
|
||||
public string File { get; set; }
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
namespace NzbDrone.Core.Notifications.Xbmc.Model
|
||||
{
|
||||
public class SourceResponse
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string JsonRpc { get; set; }
|
||||
public SourceResult Result { get; set; }
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace NzbDrone.Core.Notifications.Xbmc.Model
|
||||
{
|
||||
public class SourceResult
|
||||
{
|
||||
public Dictionary<string, int> Limits { get; set; }
|
||||
public List<KodiSource> Sources;
|
||||
|
||||
public SourceResult()
|
||||
{
|
||||
Sources = new List<KodiSource>();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue