mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-06-22 22:07:28 +02:00
Version 3.0.338
This commit is contained in:
parent
573fe77e12
commit
0468955d49
751 changed files with 62747 additions and 60672 deletions
|
@ -1,13 +1,13 @@
|
|||
namespace TINK.Model.Bikes.BikeInfoNS.DriveNS.EngineNS
|
||||
{
|
||||
public class Engine : IEngine
|
||||
{
|
||||
public Engine(string manufacturer = null)
|
||||
=> Manufacturer = !string.IsNullOrEmpty(manufacturer) ? manufacturer : null;
|
||||
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;
|
||||
}
|
||||
/// <summary>
|
||||
/// Manufacturer of the engine.
|
||||
/// </summary>
|
||||
public string Manufacturer { get; private set; } = null;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
namespace TINK.Model.Bikes.BikeInfoNS.DriveNS.EngineNS
|
||||
{
|
||||
public interface IEngine
|
||||
{
|
||||
/// <summary>
|
||||
/// Manufacturer of the engine.
|
||||
/// </summary>
|
||||
string Manufacturer { get; }
|
||||
}
|
||||
public interface IEngine
|
||||
{
|
||||
/// <summary>
|
||||
/// Manufacturer of the engine.
|
||||
/// </summary>
|
||||
string Manufacturer { get; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue