mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
17 lines
369 B
C#
17 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; }
|
|
}
|
|
}
|