mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-04-19 11:37:28 +02:00
Initial version.
This commit is contained in:
parent
193aaa1a56
commit
b72c67a53e
228 changed files with 25924 additions and 0 deletions
18
TINKLib/Services/CopriApi/StationsAndBikesContainer.cs
Normal file
18
TINKLib/Services/CopriApi/StationsAndBikesContainer.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue