* add remote stream metadata * use ifilesystem for last write time * clean up unused inheritance * optimize channel data query * revert removeartwork change * properly handle remote stream artwork in orphaned artwork check
10 lines
263 B
C#
10 lines
263 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class RemoteStreamMetadata : Metadata
|
|
{
|
|
public string ContentRating { get; set; }
|
|
public string Plot { get; set; }
|
|
public int RemoteStreamId { get; set; }
|
|
public RemoteStream RemoteStream { get; set; }
|
|
}
|