-
Notifications
You must be signed in to change notification settings - Fork 414
Expand file tree
/
Copy pathParcelCount.unitsnet.json
More file actions
44 lines (44 loc) · 940 Bytes
/
Copy pathParcelCount.unitsnet.json
File metadata and controls
44 lines (44 loc) · 940 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"Name": "ParcelCount",
"Namespace": "ModularPlayground",
"BaseUnit": "Parcel",
"BaseDimensions": {},
"Units": [
{
"SingularName": "Parcel",
"PluralName": "Parcels",
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "pkg" ]
}
]
},
{
"SingularName": "Dozen",
"PluralName": "Dozens",
"FromUnitToBaseFunc": "{x} * 12",
"FromBaseToUnitFunc": "{x} / 12",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "doz" ]
}
]
},
{
"SingularName": "Gross",
"PluralName": "Gross",
"FromUnitToBaseFunc": "{x} * 144",
"FromBaseToUnitFunc": "{x} / 144",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "gr" ]
}
]
}
]
}