You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IotMessageTypeUtils.cs 445B

12345678910111213141516171819
  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. }