ConvertWeightHelper.cs 364 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SMP.Common.Unit
  7. {
  8. public static class ConvertWeightHelper
  9. {
  10. public static decimal OZToG => 28.349523125m;
  11. public static decimal LBSToG => 453.59237m;
  12. public static decimal KGToG => 1000.0m;
  13. }
  14. }