Innovenergy_trunk/csharp/Lib/Units/Composite/Bus.cs

11 lines
281 B
C#
Raw Normal View History

using System.Diagnostics.CodeAnalysis;
namespace InnovEnergy.Lib.Units.Composite;
[SuppressMessage("ReSharper", "MemberCanBeProtected.Global")]
2023-05-24 10:04:01 +00:00
public abstract record Bus
{
2023-05-24 10:04:01 +00:00
public Voltage Voltage { get; protected init; }
public Current Current { get; protected init; }
}