summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/MessageLoggedEventArgs.cs
blob: a73b5ca0bb1ac392b02bd2681bf1b9dac12b646c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace HandBrake.Interop
{
    public class MessageLoggedEventArgs : EventArgs
    {
        public string Message { get; set; }
    }
}