// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the LogViewModel type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels
{
using Caliburn.Micro;
using HandBrakeWPF.ViewModels.Interfaces;
///
/// The Log View Model
///
public class LogViewModel : ViewModelBase, ILogViewModel
{
///
/// Initializes a new instance of the class.
///
///
/// The window manager.
///
public LogViewModel(IWindowManager windowManager)
: base(windowManager)
{
this.Title = "Log Viewer";
}
}
}