You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
747 B
37 lines
747 B
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace NzbDrone.Core.Tvdb
|
|
{
|
|
[XmlRoot(ElementName = "Actors")]
|
|
public class TvdbActorRoot
|
|
{
|
|
public TvdbActorRoot()
|
|
{
|
|
Actors = new List<TvdbActor>();
|
|
}
|
|
|
|
[XmlElement(ElementName = "Actor")]
|
|
public List<TvdbActor> Actors { get; set; }
|
|
}
|
|
|
|
public class TvdbActor
|
|
{
|
|
[XmlElement]
|
|
public int id { get; set; }
|
|
|
|
[XmlElement]
|
|
public string Image { get; set; }
|
|
|
|
[XmlElement]
|
|
public string Name { get; set; }
|
|
|
|
[XmlElement]
|
|
public string Role { get; set; }
|
|
|
|
[XmlElement]
|
|
public int SortOrder { get; set; }
|
|
}
|
|
}
|