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

11 lines
244 B
C#
Raw Normal View History

using System.Diagnostics.CodeAnalysis;
namespace InnovEnergy.Lib.Units.Composite;
[SuppressMessage("ReSharper", "MemberCanBeProtected.Global")]
2023-03-01 09:52:21 +00:00
public interface IBus
{
public Voltage Voltage { get; }
public Current Current { get; }
}