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

18 lines
576 B
C#
Raw Normal View History

2020-08-29 19:30:09 +02:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity that holds metadata for a photo.
/// </summary>
2020-09-01 17:38:09 +02:00
public class PhotoMetadata : ItemMetadata
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="PhotoMetadata"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <param name="title">The title or name of the photo.</param>
2020-06-19 12:21:49 +02:00
/// <param name="language">ISO-639-3 3-character language codes.</param>
public PhotoMetadata(string title, string language) : base(title, language)
2020-05-02 23:56:05 +02:00
{
}
}
}