mirror of https://github.com/ErsatzTV/ErsatzTV.git
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.
24 lines
739 B
24 lines
739 B
namespace ErsatzTV.Scanner.Core.Metadata.Nfo; |
|
|
|
public class EpisodeNfo |
|
{ |
|
public EpisodeNfo() |
|
{ |
|
Actors = new List<ActorNfo>(); |
|
Writers = new List<string>(); |
|
Directors = new List<string>(); |
|
UniqueIds = new List<UniqueIdNfo>(); |
|
} |
|
|
|
public string? ShowTitle { get; set; } |
|
public string? Title { get; set; } |
|
public int Episode { get; set; } |
|
public int Season { get; set; } |
|
public string? ContentRating { get; set; } |
|
public Option<DateTime> Aired { get; set; } |
|
public string? Plot { get; set; } |
|
public List<ActorNfo> Actors { get; } |
|
public List<string> Writers { get; } |
|
public List<string> Directors { get; } |
|
public List<UniqueIdNfo> UniqueIds { get; } |
|
}
|
|
|