Files
CRSim/CRSim.Core/Services/INetworkService.cs
2025-04-05 22:12:38 +08:00

16 lines
358 B
C#

using CRSim.Core.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CRSim.Core.Services
{
public interface INetworkService
{
Task<List<TrainStop>?> GetTimeTableAsync(string number);
Task<List<TrainStop>> GetTrainNumbersAsync(string name);
}
}