mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2026-02-07 16:24:21 +01:00
18 lines
328 B
C#
18 lines
328 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTDevices.Nmea.LaserTech.LaserRange
|
|
{
|
|
/// <summary>
|
|
/// Laser Range
|
|
/// </summary>
|
|
[NmeaMessageType(Type = "PLTIT")]
|
|
public class Pltit : LaserRangeMessage
|
|
{
|
|
}
|
|
}
|