KFDtool/sw/control/KFDtool.P25/Kmm/KmmBody.cs

20 lines
425 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KFDtool.P25.Kmm
{
public abstract class KmmBody
{
public abstract MessageId MessageId { get; }
public abstract ResponseKind ResponseKind { get; }
public abstract byte[] ToBytes();
public abstract void Parse(byte[] contents);
}
}