mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-25 22:59:10 -04:00
New: XBMC Metadata (Frodo+)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.MetadataSource.Trakt
|
||||
{
|
||||
public class Actor
|
||||
{
|
||||
public string name { get; set; }
|
||||
public string character { get; set; }
|
||||
public Images images { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -13,5 +13,7 @@
|
||||
public int first_aired_utc { get; set; }
|
||||
public string url { get; set; }
|
||||
public string screen { get; set; }
|
||||
public Ratings ratings { get; set; }
|
||||
public Images images { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -29,6 +29,8 @@ namespace NzbDrone.Core.MetadataSource.Trakt
|
||||
public Images images { get; set; }
|
||||
public List<string> genres { get; set; }
|
||||
public List<Season> seasons { get; set; }
|
||||
public Ratings ratings { get; set; }
|
||||
public People people { get; set; }
|
||||
}
|
||||
|
||||
public class SearchShow
|
||||
|
||||
@@ -5,5 +5,7 @@
|
||||
public string poster { get; set; }
|
||||
public string fanart { get; set; }
|
||||
public string banner { get; set; }
|
||||
public string screen { get; set; }
|
||||
public string headshot { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace NzbDrone.Core.MetadataSource.Trakt
|
||||
{
|
||||
public class People
|
||||
{
|
||||
public List<Actor> actors { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace NzbDrone.Core.MetadataSource.Trakt
|
||||
{
|
||||
public class Ratings
|
||||
{
|
||||
public Int32 percentage { get; set; }
|
||||
public Int32 votes { get; set; }
|
||||
public Int32 loved { get; set; }
|
||||
public Int32 hated { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -8,5 +8,6 @@ namespace NzbDrone.Core.MetadataSource.Trakt
|
||||
public List<Episode> episodes { get; set; }
|
||||
public string url { get; set; }
|
||||
public string poster { get; set; }
|
||||
public Images images { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user