added new projects and some base code for persistence

This commit is contained in:
2018-12-10 00:20:33 +01:00
parent e5ed4a6ccc
commit 4480e219fa
12 changed files with 118 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
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; }
}
}