added xspf parser

moved files to better namespaces
added example playlistfiles
codereformat
This commit is contained in:
2018-12-16 00:30:31 +01:00
parent 858a694eeb
commit a42814029a
9 changed files with 2312 additions and 18 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.ComponentModel;
using System.Xml.Serialization;
namespace Tv7Playlist.Core.Parsers.Xspf
{
[Serializable]
[DesignerCategory("code")]
[XmlType(AnonymousType = true, Namespace = "http://xspf.org/ns/0/")]
public class PlaylistTrack
{
[XmlElement("title")] public string Title { get; set; }
[XmlElement("location")] public string Location { get; set; }
[XmlElement("extension")] public PlaylistTrackExtension Extension { get; set; }
}
}