Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1. namespace ArbitrageClient
  2. {
  3.     enum ExtraCostType
  4.     {
  5.         FuelCost,
  6.         ShippingCost,
  7.         ShippingIncluded
  8.     }
  9.  
  10.     static class ExtraCostTypeMethods
  11.     {
  12.         public static Dictionary<ExtraCostType, string> ToDescriptionDictionary { get; } = new Dictionary<ExtraCostType, string>
  13.             {
  14.                 { ExtraCostType.FuelCost, "Fuel Cost" },
  15.                 { ExtraCostType.ShippingCost, "Shipping Cost" },
  16.                 { ExtraCostType.ShippingIncluded, "Shipping Included" }
  17.             };
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement