11 lines
332 B
C#
11 lines
332 B
C#
|
|
// ReSharper disable once CheckNamespace
|
|
namespace InnovEnergy.Lib.Units;
|
|
|
|
public readonly struct Sum
|
|
{
|
|
public Sum(Double value) => throw new NotImplementedException();
|
|
public Double Value => throw new NotImplementedException();
|
|
|
|
public static Sum operator |(Sum left, Sum right) => new(left.Value + right.Value);
|
|
} |