changed the way to trigger a playlist sync
This commit is contained in:
12
Tv7Playlist/Models/HomeSynchronizeModel.cs
Normal file
12
Tv7Playlist/Models/HomeSynchronizeModel.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Tv7Playlist.Models
|
||||
{
|
||||
public class HomeSynchronizeModel
|
||||
{
|
||||
public HomeSynchronizeModel(string synchronizationUrl)
|
||||
{
|
||||
SynchronizationUrl = synchronizationUrl;
|
||||
}
|
||||
|
||||
public string SynchronizationUrl { get; set; }
|
||||
}
|
||||
}
|
@@ -1,14 +0,0 @@
|
||||
using Tv7Playlist.Data;
|
||||
|
||||
namespace Tv7Playlist.Models
|
||||
{
|
||||
public class PlaylistEntryEditViewModel
|
||||
{
|
||||
public PlaylistEntryEditViewModel(PlaylistEntry playlistEntry)
|
||||
{
|
||||
PlaylistEntry = playlistEntry;
|
||||
}
|
||||
|
||||
public PlaylistEntry PlaylistEntry { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user