* sync guids/provider ids (#227) * sync guids from plex * cleanup * sync local guids * sync jellyfin and emby guids * add episodes to search index (#228) * sync episode directors and writers * display episode writers and directors * remove missing episodes from search index * show episodes in search results * fix emby and jellyfin episode updates * fix updating plex episodes * don't delete channel logos on startup * add episodes page; fix adding episodes to collection * cleanup * multi-part episode grouping fixes (#229)
25 lines
837 B
C#
25 lines
837 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class Metadata
|
|
{
|
|
public int Id { get; set; }
|
|
public MetadataKind MetadataKind { get; set; }
|
|
public string Title { get; set; }
|
|
public string OriginalTitle { get; set; }
|
|
public string SortTitle { get; set; }
|
|
public int? Year { get; set; }
|
|
public DateTime? ReleaseDate { get; set; }
|
|
public DateTime DateAdded { get; set; }
|
|
public DateTime DateUpdated { get; set; }
|
|
public List<Artwork> Artwork { get; set; }
|
|
public List<Genre> Genres { get; set; }
|
|
public List<Tag> Tags { get; set; }
|
|
public List<Studio> Studios { get; set; }
|
|
public List<Actor> Actors { get; set; }
|
|
public List<MetadataGuid> Guids { get; set; }
|
|
}
|
|
}
|