19 lines
278 B
C#
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;
|
|
}
|
|
}
|
|
}
|