Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

20 lines
445B

  1. using GpsCardGatewayPosition.Common.Extension;
  2. using GpsCardGatewayPosition.Model.Enum;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace GpsCardGatewayPosition.Common
  9. {
  10. public class IotMessageTypeUtils
  11. {
  12. public static string TryToDescription(int type)
  13. {
  14. return ((IotMessagePositionType)type).ToDescription();
  15. }
  16. }
  17. }