* optimize emby collection scan frequency * add button to sync emby collections * update changelog * fix scanning; add progress indicator
11 lines
355 B
C#
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; }
|
|
}
|