10 lines
222 B
C#
10 lines
222 B
C#
|
|
using PARR.AIHITRelationshipsSyncer.Models;
|
|||
|
|
|
|||
|
|
namespace PARR.AIHITRelationshipsSyncer.Services.Interfaces
|
|||
|
|
{
|
|||
|
|
public interface IRelationshipsSyncService
|
|||
|
|
{
|
|||
|
|
Task SyncAsync(List<AihitData> aihitdata);
|
|||
|
|
}
|
|||
|
|
}
|