Files
ersatztv/ErsatzTV.Infrastructure/Emby/Models/EmbyLibraryItemResponse.cs
T
Jason DoveandGitHub 68123a2f9c add content rating (#218)
* add new columns

* store local content ratings

* display and search content ratings

* add content_rating to search docs

* sync content rating from jellyfin, emby, plex

* force sync content rating for all libraries

* code cleanup
2021-05-27 06:41:24 -05:00

31 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
namespace ErsatzTV.Infrastructure.Emby.Models
{
public class EmbyLibraryItemResponse
{
public string Name { get; set; }
public string Id { get; set; }
public string Etag { get; set; }
public string Path { get; set; }
public string OfficialRating { get; set; }
public DateTimeOffset DateCreated { get; set; }
public long RunTimeTicks { get; set; }
public List<string> Genres { get; set; }
public List<string> Tags { get; set; }
public int ProductionYear { get; set; }
public string PremiereDate { get; set; }
public List<EmbyMediaStreamResponse> MediaStreams { get; set; }
public List<EmbyMediaSourceResponse> MediaSources { get; set; }
public string LocationType { get; set; }
public string Overview { get; set; }
public List<string> Taglines { get; set; }
public List<EmbyStudioResponse> Studios { get; set; }
public List<EmbyPersonResponse> People { get; set; }
public EmbyImageTagsResponse ImageTags { get; set; }
public List<string> BackdropImageTags { get; set; }
public int? IndexNumber { get; set; }
}
}