sp-dev-fx-webparts/samples/react-realtime-incidentdash.../backend/O365Clinic.Function.Webhooks/Interfaces/ISharePointService.cs

19 lines
484 B
C#

using O365Clinic.Function.Webhooks.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace O365Clinic.Function.Webhooks
{
public interface ISharePointService
{
/// <summary>
/// Get Incidents
/// </summary>
/// <param name="siteUrl"></param>
/// <returns></returns>
//Task<List<IncidentItem>> GetTickets(string siteUrl);
Task GetListRecentChanges(string siteUrl, string cardPath);
}
}