2023-05-03 18:27:37 +04:00

20 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TransportGuideDataModels.Models
{
public interface INrouteModel
{
string Name { get;}
string IP { get;}
int TransportTypeId { get;}
Dictionary<int, (IStopModel, int)>? StopNRoute { get; }
}
}