mirror of
https://github.com/SCToolsfactory/SCJMapper-V2.git
synced 2024-11-16 12:13:09 +00:00
40 lines
811 B
C#
40 lines
811 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SCJMapper_V2.Table
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// A driver custom event to callback for exposure
|
|||
|
/// </summary>
|
|||
|
public class EditRowEventArgs : EventArgs
|
|||
|
{
|
|||
|
public string Actionmap { get; private set; }
|
|||
|
public string Actionkey { get; private set; }
|
|||
|
public int Nodeindex { get; private set; }
|
|||
|
|
|||
|
public EditRowEventArgs( string actionmap, string actionkey, int nodeindex )
|
|||
|
{
|
|||
|
Actionmap = actionmap;
|
|||
|
Actionkey = actionkey;
|
|||
|
Nodeindex = nodeindex;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// A driver custom event to callback for exposure
|
|||
|
/// </summary>
|
|||
|
public class UpdateEditEventArgs : EventArgs
|
|||
|
{
|
|||
|
public UpdateEditEventArgs( )
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|