Stream custom live channels using your own media
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
458 B

using System;
namespace ErsatzTV.Core.Domain
{
public class TelevisionEpisodeMetadata : MediaItemMetadata
{
public int Id { get; set; }
public int TelevisionEpisodeId { get; set; }
public TelevisionEpisodeMediaItem TelevisionEpisode { get; set; }
public int Season { get; set; }
public int Episode { get; set; }
public string Plot { get; set; }
public DateTime? Aired { get; set; }
}
}