sharee.bike-App/TINKLib/Services/BluetoothLock/ILocksServiceFake.cs

10 lines
189 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
using TINK.Model.Bike;
namespace TINK.Services.BluetoothLock
{
public interface ILocksServiceFake : ILocksService
{
void UpdateSimulation(BikeCollection bikes);
}
}