mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
10 lines
189 B
C#
10 lines
189 B
C#
|
using TINK.Model.Bike;
|
|||
|
|
|||
|
namespace TINK.Services.BluetoothLock
|
|||
|
{
|
|||
|
public interface ILocksServiceFake : ILocksService
|
|||
|
{
|
|||
|
void UpdateSimulation(BikeCollection bikes);
|
|||
|
}
|
|||
|
}
|