SafeDispatch/LibrarySDR/Responses/LifeSignResponse.cs
2024-02-22 18:43:59 +02:00

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