tbf/TBF/UiBridge/EventEventArgs.cs

19 lines
278 B
C#
Raw Permalink Normal View History

///
/// 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;
}
}
}