forked from ddrilling/AsbCloudServer
11 lines
205 B
C#
11 lines
205 B
C#
|
using AsbCloudApp.Data;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
public interface IEventService
|
|||
|
{
|
|||
|
void Upsert(string uid, IEnumerable<EventDto> dtos);
|
|||
|
}
|
|||
|
}
|