2025-05-19 10:16:09 +10:00
|
|
|
|
using PARR.AIHITMainLoader.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.AIHITMainLoader.Services
|
|
|
|
|
|
{
|
|
|
|
|
|
internal interface IAihitService
|
|
|
|
|
|
{
|
2025-05-21 11:53:07 +10:00
|
|
|
|
IEnumerable<IMainData>? GetPtkData(string respArea);
|
|
|
|
|
|
IEnumerable<IMainData>? GetCvkData(string respArea);
|
2025-05-19 10:16:09 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|