2022-08-30 15:42:25 +02:00
|
|
|
|
using TINK.Model.Bikes;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
|
|
|
|
namespace TINK.Services.BluetoothLock
|
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public interface ILocksServiceFake : ILocksService
|
|
|
|
|
{
|
|
|
|
|
void UpdateSimulation(BikeCollection bikes);
|
|
|
|
|
}
|
2021-05-13 20:03:07 +02:00
|
|
|
|
}
|