sharee.bike-App/TINKLib/Model/Bikes/BikeInfoNS/DriveNS/IDrive.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

24 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; }
}
}