15 lines
392 B
C#
15 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KollNet.Lib.EventArguments {
|
|
public class NmeaReceivedEventArgs : EventArgs {
|
|
public string NmeaSentence { get; set; }
|
|
|
|
public NmeaReceivedEventArgs() { }
|
|
public NmeaReceivedEventArgs(string ns) { NmeaSentence = ns; }
|
|
}
|
|
}
|