10 lines
202 B
C#
10 lines
202 B
C#
|
|
using PARR.AIHITRelationshipsSyncer.Models;
|
|||
|
|
|
|||
|
|
namespace PARR.AIHITRelationshipsSyncer.Services.Interfaces
|
|||
|
|
{
|
|||
|
|
public interface IAihitService
|
|||
|
|
{
|
|||
|
|
IEnumerable<AihitData>? GetData();
|
|||
|
|
}
|
|||
|
|
}
|