Merge branch 'develop' of https://github.com/lidarr/Lidarr into develop
commit
8bd9119954
@ -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