Files
ersatztv/ErsatzTV.Core/Domain/Metadata/Metadata.cs
T
Jason DoveandGitHub c240169fc9 add multiselect and movie tags (#62)
* add basic selection behavior to search results

* add search scrolling, selection actions

* include shows in multiselect

* multiselect movies, shows, collection items

* add movie and show tags

* code cleanup

* update show screenshot
2021-03-11 18:49:00 +00:00

22 lines
685 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; }
}
}