Files
DvdCollection/DvdCollection/Pages/Dvd/Data/DvdList.cs
2023-02-19 13:47:59 -05:00

24 lines
1.0 KiB
C#

namespace DvdCollection.Pages.Dvd.Data
{
[XmlRoot(ElementName = "list", Namespace = "market://details?id=de.olbu.android.moviecollection")]
public class DvdList
{
[XmlElement(ElementName = "movies", Namespace = "market://details?id=de.olbu.android.moviecollection")]
public DvdMovies Movies { get; set; }
[XmlAttribute(AttributeName = "class")]
public string Class { get; set; }
[XmlAttribute(AttributeName = "id")]
public string Id { get; set; }
[XmlAttribute(AttributeName = "list_type")]
public string List_type { get; set; }
[XmlAttribute(AttributeName = "name")]
public string Name { get; set; }
[XmlAttribute(AttributeName = "order")]
public string Order { get; set; }
[XmlAttribute(AttributeName = "table")]
public string Table { get; set; }
[XmlElement(ElementName = "series", Namespace = "market://details?id=de.olbu.android.moviecollection")]
public DvdSeriesParent Series { get; set; }
}
}