sharee.bike-App/TINKLib/Services/CopriApi/StationsAndBikesContainer.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

18 lines
369 B
C#

using TINK.Model.Bikes;
using TINK.Model.Station;
namespace TINK.Model.Services.CopriApi
{
public class StationsAndBikesContainer
{
public StationsAndBikesContainer(StationDictionary stations, BikeCollection bikes)
{
StationsAll = stations;
Bikes = bikes;
}
public StationDictionary StationsAll { get; }
public BikeCollection Bikes { get; }
}
}