Files
ersatztv/ErsatzTV.Core/Domain/Metadata/Metadata.cs
T
Jason DoveandGitHub 1ab98578ab refactor namespaces and imports (#670)
* re-namespace

* optimize usings

* more usings

* more of the same

* more implicit/global usings

* cleanup all usings

* minor fixes
2022-03-03 15:36:07 -06:00

20 lines
713 B
C#

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; }
}