forked from angularsen/UnitsNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseDimensions.cs
More file actions
31 lines (28 loc) · 977 Bytes
/
BaseDimensions.cs
File metadata and controls
31 lines (28 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Licensed under MIT No Attribution, see LICENSE file at the root.
// Copyright 2013 Andreas Gullberg Larsen (andreas.larsen84@gmail.com). Maintained at https://github.com/angularsen/UnitsNet.
namespace CodeGen.JsonTypes
{
internal class BaseDimensions
{
// 0649 Field is never assigned to
#pragma warning disable 0649
/// <summary>AmountOfSubstance.</summary>
public int N = 0;
/// <summary>ElectricCurrent.</summary>
public int I = 0;
/// <summary>Length.</summary>
public int L = 0;
/// <summary>LuminousIntensity.</summary>
public int J = 0;
/// <summary>Mass.</summary>
public int M = 0;
/// <summary>Temperature.</summary>
public int Θ = 0;
/// <summary>Time.</summary>
public int T = 0;
/// <summary>Information.</summary>
public int b = 0;
// 0649 Field is never assigned to
#pragma warning restore 0649
}
}