namespace Jellyfin.Data.Entities.Libraries { /// /// An entity that holds metadata for a photo. /// public class PhotoMetadata : ItemMetadata { /// /// Initializes a new instance of the class. /// /// The title or name of the photo. /// ISO-639-3 3-character language codes. public PhotoMetadata(string title, string language) : base(title, language) { } } }