// -------------------------------------------------------------------------------------------------------------------- // // 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.Interop.Interop.Json.Scan { /// /// The meta data. /// public class SourceMetadata { public string Name { get; set; } public string Artist { get; set; } public string Composer { get; set; } public string Comment { get; set; } public string Genre { get; set; } public string Album { get; set; } public string AlbumArtist { get; set; } public string Description { get; set; } public string LongDescription { get; set; } public string ReleaseDate { get; set; } } }