16 lines
270 B
C#
16 lines
270 B
C#
using System;
|
|
using TBF.BenchControl;
|
|
|
|
namespace TBF.UiBridge
|
|
{
|
|
public class ProcedureCompletedEventArgs : EventArgs
|
|
{
|
|
public Entities.Procedure Procedure;
|
|
|
|
public ProcedureCompletedEventArgs(Entities.Procedure procedure)
|
|
{
|
|
Procedure = procedure;
|
|
}
|
|
}
|
|
}
|