jellyfin/Jellyfin.Data/Entities/Libraries/Photo.cs

30 lines
902 B
C#
Raw Normal View History

using System.Collections.Generic;
using Jellyfin.Data.Interfaces;
2020-08-29 19:30:09 +02:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a photo.
/// </summary>
public class Photo : LibraryItem, IHasReleases
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="Photo"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <param name="library">The library.</param>
public Photo(Library library) : base(library)
2020-05-02 23:56:05 +02:00
{
PhotoMetadata = new HashSet<PhotoMetadata>();
Releases = new HashSet<Release>();
}
2020-05-02 23:56:05 +02:00
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets a collection containing the photo metadata.
2020-05-02 23:56:05 +02:00
/// </summary>
2021-03-18 00:08:11 +01:00
public virtual ICollection<PhotoMetadata> PhotoMetadata { get; private set; }
/// <inheritdoc />
2021-03-18 00:08:11 +01:00
public virtual ICollection<Release> Releases { get; private set; }
2020-05-02 23:56:05 +02:00
}
}