2020-03-05 12:59:43 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2020 Sensus Slovensko a.s.
|
|
|
|
|
|
///
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
2021-10-26 09:23:57 +00:00
|
|
|
|
namespace TBF.Rig.GenericDevices
|
2020-03-05 12:59:43 +00:00
|
|
|
|
{
|
|
|
|
|
|
interface IHasCalendarEvents
|
|
|
|
|
|
{
|
2023-04-18 12:01:23 +00:00
|
|
|
|
List<Config.CalendarEvent.ICalendarEvent> GetCalendarEvents();
|
2020-03-05 12:59:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|