17 lines
376 B
C#
17 lines
376 B
C#
namespace StandardScene.Magnetic.Protocol
|
|
{
|
|
/// <summary>
|
|
/// 由 <see cref="Fass2UdpHub"/> 回调的 UDP/PCB 车型处理接口。
|
|
/// </summary>
|
|
internal interface IFass2UdpCar
|
|
{
|
|
ushort VehicleCode { get; }
|
|
|
|
string RemoteAddress { get; }
|
|
|
|
int RemotePort { get; }
|
|
|
|
void OnUdpStateReceived(Fass2StateReport report);
|
|
}
|
|
}
|