Files
ersatztv/ErsatzTV.Core/Domain/Metadata/OtherVideoMetadata.cs
T
Jason DoveandGitHub 1431b33a98 support movie nfo metadata in other video libraries (#788)
* add other video nfo metadata

* update docs
2022-05-05 20:38:23 -05:00

14 lines
431 B
C#

namespace ErsatzTV.Core.Domain;
public class OtherVideoMetadata : Metadata
{
public string ContentRating { get; set; }
public string Outline { get; set; }
public string Plot { get; set; }
public string Tagline { get; set; }
public int OtherVideoId { get; set; }
public OtherVideo OtherVideo { get; set; }
public List<Director> Directors { get; set; }
public List<Writer> Writers { get; set; }
}