18 lines
280 B
C#
18 lines
280 B
C#
|
|
///
|
|||
|
|
/// Copyright (c) 2020 Sensus Slovensko a.s.
|
|||
|
|
///
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace TBF.UiBridge
|
|||
|
|
{
|
|||
|
|
public class RouteChangeArgs : EventArgs
|
|||
|
|
{
|
|||
|
|
public readonly int BitNr;
|
|||
|
|
|
|||
|
|
public RouteChangeArgs(int bitNr)
|
|||
|
|
{
|
|||
|
|
BitNr = bitNr;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|