added new fields to the playlist entry, migrations and started with the api controller to manage the list

This commit is contained in:
2019-01-24 23:14:07 +01:00
parent 6920d410b5
commit 6c6d107550
8 changed files with 221 additions and 7 deletions

View File

@@ -9,7 +9,13 @@ namespace Tv7Playlist.Data
public int TrackNumber { get; set; }
public string Name { get; set; }
public string NameOverride { get; set; }
public string Url { get; set; }
public bool IsAvailable { get; set; }
public bool IsEnabled { get; set; }
}
}