16 lines
322 B
C#
16 lines
322 B
C#
using LibrarySDR.Enums;
|
|
using System;
|
|
|
|
namespace LibrarySDR.Responses
|
|
{
|
|
public class LifeSignResponse
|
|
{
|
|
public PDUType PduType => PDUType.LIFE_SIGN_RESP;
|
|
|
|
public LifeSignResponse(String hexResponsePayload)
|
|
{
|
|
// nothing to do here because there is no payload
|
|
}
|
|
}
|
|
}
|