|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace InnovEnergy.Lib.Units.Composite;
|
|
|
|
[SuppressMessage("ReSharper", "MemberCanBeProtected.Global")]
|
|
|
|
public abstract record Bus
|
|
{
|
|
public Voltage Voltage { get; protected init; }
|
|
public Current Current { get; protected init; }
|
|
} |