2020-03-05 12:59:43 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2020 Sensus Slovensko a.s.
|
|
|
|
|
|
///
|
|
|
|
|
|
using System;
|
2021-05-27 15:30:04 +00:00
|
|
|
|
using SharedDatabase.Entities;
|
2020-03-05 12:59:43 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.UiBridge
|
|
|
|
|
|
{
|
|
|
|
|
|
public class EventEventArgs : EventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
public Event Evnt;
|
|
|
|
|
|
|
|
|
|
|
|
public EventEventArgs(Event evnt)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.Evnt = evnt;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|