// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The meta data. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Encode { /// /// The meta data. /// public class Metadata { /// /// Gets or sets the album artist. /// public string AlbumArtist { get; set; } /// /// Gets or sets the artist. /// public string Artist { get; set; } /// /// Gets or sets the comment. /// public string Comment { get; set; } /// /// Gets or sets the composer. /// public string Composer { get; set; } /// /// Gets or sets the description. /// public string Description { get; set; } /// /// Gets or sets the genre. /// public string Genre { get; set; } /// /// Gets or sets the long description. /// public string LongDescription { get; set; } /// /// Gets or sets the name. /// public string Name { get; set; } /// /// Gets or sets the release date. /// public string ReleaseDate { get; set; } } }