11 lines
233 B
C#
11 lines
233 B
C#
using System.Threading.Tasks;
|
|
using API.DTOs.Stats;
|
|
|
|
namespace API.Interfaces.Services
|
|
{
|
|
public interface IStatsService
|
|
{
|
|
Task PathData(ClientInfoDto clientInfoDto);
|
|
Task CollectAndSendStatsData();
|
|
}
|
|
}
|