mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
13 lines
350 B
C#
13 lines
350 B
C#
namespace TINK.Model.Bikes.BikeInfoNS.DriveNS.EngineNS
|
|
{
|
|
public class Engine : IEngine
|
|
{
|
|
public Engine(string manufacturer = null)
|
|
=> Manufacturer = !string.IsNullOrEmpty(manufacturer) ? manufacturer : null;
|
|
|
|
/// <summary>
|
|
/// Manufacturer of the engine.
|
|
/// </summary>
|
|
public string Manufacturer { get; private set; } = null;
|
|
}
|
|
}
|