Fixed: Update Emby Notification (#284)
parent
af090c7a3a
commit
1937a8e27c
@ -0,0 +1,10 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Notifications.MediaBrowser.Model
|
||||||
|
{
|
||||||
|
public class EmbyMediaFolder
|
||||||
|
{
|
||||||
|
public string Path { get; set; }
|
||||||
|
public string CollectionType { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Notifications.MediaBrowser.Model
|
||||||
|
{
|
||||||
|
public class EmbyMediaFoldersResponse
|
||||||
|
{
|
||||||
|
public List<EmbyMediaFolder> Items { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Notifications.MediaBrowser.Model
|
||||||
|
{
|
||||||
|
public class EmbyMediaUpdateInfo
|
||||||
|
{
|
||||||
|
public string Path { get; set; }
|
||||||
|
public string UpdateType { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue