* properly scope jellyfin disconnect * add emby entities * add emby media source page * add emby media source editor * sync emby libraries * enable emby library sync toggle * add emby path replacements editor * add emby movie synchronization * fix emby artwork * sync emby television * code cleanup * add jellyfin/emby address placeholder * tweak jellyfin/emby address form
13 lines
365 B
C#
13 lines
365 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class EmbyMediaSource : MediaSource
|
|
{
|
|
public string ServerName { get; set; }
|
|
public string OperatingSystem { get; set; }
|
|
public List<EmbyConnection> Connections { get; set; }
|
|
public List<EmbyPathReplacement> PathReplacements { get; set; }
|
|
}
|
|
}
|