20 lines
364 B
C#
Raw Normal View History

2023-04-22 18:15:39 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TransportGuideDataModels.Models
{
2023-05-03 18:57:37 +04:00
public interface IRouteModel : IId
2023-04-22 18:15:39 +04:00
{
string Name { get;}
string IP { get;}
2023-05-03 18:27:37 +04:00
int TransportTypeId { get;}
2023-05-04 20:21:27 +04:00
Dictionary<int, (IStopModel, int)> StopRoutes { get; }
2023-05-03 18:27:37 +04:00
}
2023-04-22 18:15:39 +04:00
}