changed the way to trigger a playlist sync

This commit is contained in:
2019-01-26 22:27:43 +01:00
parent 01072c86db
commit e88b0ec5ba
5 changed files with 52 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
namespace Tv7Playlist.Models
{
public class HomeSynchronizeModel
{
public HomeSynchronizeModel(string synchronizationUrl)
{
SynchronizationUrl = synchronizationUrl;
}
public string SynchronizationUrl { get; set; }
}
}

View File

@@ -1,14 +0,0 @@
using Tv7Playlist.Data;
namespace Tv7Playlist.Models
{
public class PlaylistEntryEditViewModel
{
public PlaylistEntryEditViewModel(PlaylistEntry playlistEntry)
{
PlaylistEntry = playlistEntry;
}
public PlaylistEntry PlaylistEntry { get; }
}
}