view Implab/ValueEventArgs.cs @ 104:5f10d54b45df v2

renamed Promise.Last -> Promise.On Promise.On doesn't changes Promise.IsExclusive property
author cin
date Sun, 09 Nov 2014 23:03:45 +0300
parents eb418ba8275b
children
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Implab
{
    [Serializable]
    public class ValueEventArgs<T>: EventArgs
    {
        public ValueEventArgs(T value)
        {
            this.Value = value;
        }
        public T Value
        {
            get;
            private set;
        }
    }
}