models done
This commit is contained in:
parent
9d6097f6d1
commit
e53f659b02
@ -6,10 +6,14 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace TransportGuideDataModels.Models
|
||||
{
|
||||
public interface n_route
|
||||
public interface INrouteModel
|
||||
{
|
||||
string Name { get;}
|
||||
string IP { get;}
|
||||
|
||||
int TransportTypeId { get;}
|
||||
|
||||
Dictionary<int, (IStopModel, int)>? StopNRoute { get; }
|
||||
|
||||
}
|
||||
}
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace TransportGuideDataModels.Models
|
||||
{
|
||||
public interface IStop
|
||||
public interface IStopModel
|
||||
{
|
||||
string Name { get; }
|
||||
}
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace TransportGuideDataModels.Models
|
||||
{
|
||||
public interface ITransportType
|
||||
public interface ITransportTypeModel
|
||||
{
|
||||
double price { get;}
|
||||
string name { get;}
|
Loading…
Reference in New Issue
Block a user