using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Protobuf { public class CompilerProgressEventArgs : EventArgs { public int Current { get; set; } public int Total { get; set; } public String File { get; set; } } }