// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the BrakeBench source code - It may be used under the terms of the 3-Clause BSD License // // // Defines the ProcessedLog type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Commands.DebugTools.Model { public class ProcessedLog { public ProcessedLog() { } public decimal? VideoAvgBitrate { get; set; } } }