sharee.bike-App/SharedBusinessLogic/Model/Bikes/BikeInfoNS/DriveNS/EngineNS/IEngine.cs
2024-04-09 12:53:23 +02:00

11 lines
198 B
C#

namespace ShareeBike.Model.Bikes.BikeInfoNS.DriveNS.EngineNS
{
public interface IEngine
{
/// <summary>
/// Manufacturer of the engine.
/// </summary>
string Manufacturer { get; }
}
}