12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SMP.Common.Unit
- {
- public static class ConvertWeightHelper
- {
- public static decimal OZToG => 28.349523125m;
- public static decimal LBSToG => 453.59237m;
- public static decimal KGToG => 1000.0m;
- }
- }
|