mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
23 lines
471 B
C#
23 lines
471 B
C#
using TINK.Model.Bikes.BikeInfoNS.DriveNS.BatteryNS;
|
|
using TINK.Model.Bikes.BikeInfoNS.DriveNS.EngineNS;
|
|
|
|
namespace TINK.Model.Bikes.BikeInfoNS
|
|
{
|
|
public interface IDrive
|
|
{
|
|
/// <summary>
|
|
/// Gets the type of the drive.
|
|
/// </summary>
|
|
DriveNS.DriveType Type { get; }
|
|
|
|
/// <summary>
|
|
/// Engine driving the bike.
|
|
/// </summary>
|
|
IEngine Engine { get; }
|
|
|
|
/// <summary>
|
|
/// Battery powering the engine.
|
|
/// </summary>
|
|
IBattery Battery { get; }
|
|
}
|
|
}
|