// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The color. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Scan { /// /// The color. /// public class Color { /// /// Gets or sets the matrix. /// public int Matrix { get; set; } /// /// Gets or sets the primary. /// public int Primary { get; set; } /// /// Gets or sets the transfer. /// public int Transfer { get; set; } } }