sharee.bike-App/SharedBusinessLogic/Services/BluetoothLock/ILocksServiceFake.cs
2024-04-09 12:53:23 +02:00

9 lines
187 B
C#

using ShareeBike.Model.Bikes;
namespace ShareeBike.Services.BluetoothLock
{
public interface ILocksServiceFake : ILocksService
{
void UpdateSimulation(BikeCollection bikes);
}
}