16 lines
514 B
C#
16 lines
514 B
C#
#nullable enable // Auto-generated code requires an explicit '#nullable' directive in source.
|
|
using System.CodeDom.Compiler;
|
|
using InnovEnergy.Lib.Units.Composite;
|
|
using InnovEnergy.Lib.Utils;
|
|
|
|
namespace InnovEnergy.Lib.StatusApi;
|
|
|
|
using T = DcDcConverterStatus;
|
|
|
|
[GeneratedCode("generate.sh", "1")]
|
|
public partial record DcDcConverterStatus
|
|
{
|
|
private static readonly Func<T, T, T> OpParallel = "|".CreateBinaryOpForProps<T>();
|
|
public static T operator |(T left, T right) => OpParallel(left, right);
|
|
}
|
|
|