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.
19 lines
606 B
19 lines
606 B
using System.Collections.Generic; |
|
|
|
namespace ErsatzTV.Core.Plex |
|
{ |
|
public class PlexMetadataEntry |
|
{ |
|
public string Key { get; set; } |
|
public string Title { get; set; } |
|
public string Summary { get; set; } |
|
public int Year { get; set; } |
|
public string Tagline { get; set; } |
|
public string Thumb { get; set; } |
|
public string Art { get; set; } |
|
public string OriginallyAvailableAt { get; set; } |
|
public int AddedAt { get; set; } |
|
public int UpdatedAt { get; set; } |
|
public List<PlexMediaEntry> Media { get; set; } |
|
} |
|
}
|
|
|