mirror of https://github.com/duggerd/KFDtool.git
20 lines
425 B
C#
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);
|
|||
|
}
|
|||
|
}
|