sharee.bike-App/TINKLib/Services/CopriApi/StationsAndBikesContainer.cs

18 lines
369 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
using TINK.Model.Bikes;
2021-05-13 20:03:07 +02:00
using TINK.Model.Station;
namespace TINK.Model.Services.CopriApi
{
2022-09-06 16:08:19 +02:00
public class StationsAndBikesContainer
{
public StationsAndBikesContainer(StationDictionary stations, BikeCollection bikes)
{
StationsAll = stations;
Bikes = bikes;
}
public StationDictionary StationsAll { get; }
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
public BikeCollection Bikes { get; }
}
2021-05-13 20:03:07 +02:00
}