Files
Nitrox/NitroxModel/Packets/PDALogEntryAdd.cs
2025-07-06 00:23:46 +02:00

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