Files
ersatztv/ErsatzTV.Core/Domain/MediaSource/EmbyMediaSource.cs
T
Jason DoveandGitHub 78745de0ca rework emby collection scanning (#1205)
* optimize emby collection scan frequency

* add button to sync emby collections

* update changelog

* fix scanning; add progress indicator
2023-03-11 22:29:10 -06:00

11 lines
355 B
C#

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; }
public DateTime? LastCollectionsScan { get; set; }
}