##// END OF EJS Templates
sync
sync

File last commit:

r7:7ea9363fef6c promises
r8:849075f49d5c promises
Show More
ProgressInitEventArgs.cs
36 lines | 714 B | text/x-csharp | CSharpLexer
/ Implab / ProgressInitEventArgs.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab
{
public class ProgressInitEventArgs: EventArgs
{
public float MaxProgress
{
get;
private set;
}
public float CurrentProgress
{
get;
private set;
}
public string Message
{
get;
private set;
}
public ProgressInitEventArgs(float current, float max, string message)
{
this.MaxProgress = max;
this.CurrentProgress = current;
this.Message = message;
}
}
}