Files
ersatztv/ErsatzTV.Core/Domain/MediaSource/JellyfinMediaSource.cs
T

11 lines
367 B
C#

namespace ErsatzTV.Core.Domain;
public class JellyfinMediaSource : MediaSource
{
public string ServerName { get; set; }
public string OperatingSystem { get; set; }
public List<JellyfinConnection> Connections { get; set; }
public List<JellyfinPathReplacement> PathReplacements { get; set; }
public DateTime? LastCollectionsScan { get; set; }
}