Files
parr_api/PARR.AIHIT/AIHIT/Services/IAIHITService.cs

10 lines
158 B
C#
Raw Normal View History

2023-08-23 16:57:38 +10:00
using PARR.AIHIT.Models;
namespace PARR.AIHIT.Services
{
internal interface IAIHITService
{
List<EK>? GetEKList(string respArea);
}
}