tbf/TBF/UiBridge/EventEventArgs.cs

19 lines
270 B
C#

///
/// Copyright (c) 2020 Sensus Slovensko a.s.
///
using System;
using Events.Entities;
namespace TBF.UiBridge
{
public class EventEventArgs : EventArgs
{
public Event Evnt;
public EventEventArgs(Event evnt)
{
this.Evnt = evnt;
}
}
}