mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
18 lines
426 B
C#
18 lines
426 B
C#
using TINK.Model.Bike;
|
|
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; }
|
|
}
|
|
}
|