1
0
mirror of https://github.com/chylex/Query.git synced 2025-07-20 00:04:32 +02:00
Query/Calculator/Math/Unit.cs

10 lines
210 B
C#

using System.Collections.Immutable;
namespace Calculator.Math;
public sealed record Unit(string ShortName, ImmutableArray<string> LongNames) {
public override string ToString() {
return ShortName;
}
}