* 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
22 lines
685 B
C#
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; }
|
|
}
|
|
}
|