14 lines
259 B
C#
14 lines
259 B
C#
///
|
|
/// Copyright (c) 2020 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TBF.Rig.GenericDevices
|
|
{
|
|
interface IHasCalendarEvents
|
|
{
|
|
IList<Config.CalendarEvent.ICalendarEvent> GetCalendarEvents();
|
|
}
|
|
}
|