// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the LogEventArgs type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Services.Logging.EventArgs { using System; using Model; /// /// The Message Logged Event Args /// public class LogEventArgs : EventArgs { /// /// Initializes a new instance of the class. /// /// /// The message. /// public LogEventArgs(LogMessage message) { this.Log = message; } /// /// Gets the Message. /// public LogMessage Log { get; private set; } } }