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

11 lines
246 B
C#
Raw Normal View History

using System.Diagnostics.CodeAnalysis;
namespace InnovEnergy.Lib.Units.Composite;
[SuppressMessage("ReSharper", "MemberCanBeProtected.Global")]
public interface IPhase
{
public Voltage Voltage { get; }
public Current Current { get; }
}