24 lines
336 B
C#
24 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelper.UnitSystem.Enums
|
|
{
|
|
public enum Force
|
|
{
|
|
}
|
|
public enum Pressure
|
|
{
|
|
}
|
|
public enum Length
|
|
{
|
|
M
|
|
}
|
|
public enum MultiplyPrefix
|
|
{
|
|
m
|
|
}
|
|
}
|