// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The hand brake state. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.State { /// /// The hand brake state. /// public class JsonState { /// /// Gets or sets the scanning. /// public Scanning Scanning { get; set; } /// /// Gets or sets the working. /// public Working Working { get; set; } /// /// Gets or sets the work done. /// public WorkDone WorkDone { get; set; } /// /// Gets or sets the state. /// public int State { get; set; } } }