forked from ddrilling/AsbCloudServer
14 lines
311 B
C#
14 lines
311 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IEventService
|
|
{
|
|
Task UpsertAsync(string uid, IEnumerable<EventDto> dtos,
|
|
CancellationToken token = default);
|
|
}
|
|
}
|