16 lines
316 B
C#
16 lines
316 B
C#
using System;
|
|
|
|
namespace NitroxModel.Packets
|
|
{
|
|
[Serializable]
|
|
public abstract class CorrelatedPacket : Packet
|
|
{
|
|
public string CorrelationId { get; protected set; }
|
|
|
|
protected CorrelatedPacket(string correlationId)
|
|
{
|
|
CorrelationId = correlationId;
|
|
}
|
|
}
|
|
}
|