Advertisement
brunobozic

ClevererEnums

Apr 19th, 2021
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | None | 0 0
  1.     public enum CharacteristicsEnum
  2.     {
  3.         [Description("DGU")]
  4.         DGU,
  5.  
  6.         [Description("countryId")]
  7.         CountryId,
  8.  
  9.         [Description("localityId")]
  10.         LocalityId,
  11.  
  12.         [Description("postCode")]
  13.         PostCode,
  14.  
  15.         [Description("streetId")]
  16.         StreetId,
  17.  
  18.         [Description("stateOrProvinceId")]
  19.         StateOrProvinceId,
  20.  
  21.         [Description("cityId")]
  22.         CityId
  23.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement