mirror of
https://github.com/denglihong2007/CRSim
synced 2026-08-13 13:15:46 +08:00
16 lines
358 B
C#
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);
|
|
}
|
|
}
|