Files
tv7playlist/Tv7Playlist.Data/PlaylistEntry.cs

15 lines
262 B
C#

using System;
namespace Tv7Playlist.Data
{
public class PlaylistEntry
{
public Guid Id { get; set; }
public int TrackNumber { get; set; }
public string Name { get; set; }
public string Url { get; set; }
}
}