##// END OF EJS Templates
sync
sync

File last commit:

r7:7ea9363fef6c promises
r8:849075f49d5c promises
Show More
ValueEventArgs.cs
20 lines | 365 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab
{
public class ValueEventArgs<T>: EventArgs
{
public ValueEventArgs(T value)
{
this.Value = value;
}
public T Value
{
get;
private set;
}
}
}