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