tbf/TBF/UiBridge/EventEventArgs.cs
2021-06-18 15:35:46 +02:00

19 lines
278 B
C#

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