17 lines
288 B
C#
17 lines
288 B
C#
using System;
|
|
|
|
namespace NitroxModel.Packets;
|
|
|
|
[Serializable]
|
|
public class PDALogEntryAdd : Packet
|
|
{
|
|
public string Key { get; }
|
|
public float Timestamp { get; }
|
|
|
|
public PDALogEntryAdd(string key, float timestamp)
|
|
{
|
|
Key = key;
|
|
Timestamp = timestamp;
|
|
}
|
|
}
|