* 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
13 lines
349 B
C#
13 lines
349 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class ShowMetadata : Metadata
|
|
{
|
|
public string ContentRating { get; set; }
|
|
public string Outline { get; set; }
|
|
public string Plot { get; set; }
|
|
public string Tagline { get; set; }
|
|
public int ShowId { get; set; }
|
|
public Show Show { get; set; }
|
|
}
|
|
}
|