You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Core/Engine/V2/ICalendarEngine.cs

11 lines
241 B

using Ombi.Core.Models.Search.V2;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace Ombi.Core.Engine.V2
{
public interface ICalendarEngine
{
Task<List<CalendarViewModel>> GetCalendarData();
}
}