using System; namespace NitroxModel.Packets; [Serializable] public class PDAEncyclopediaEntryAdd : Packet { public string Key { get; } /// /// If true, shows a notification to the player. /// public bool Verbose { get; } public PDAEncyclopediaEntryAdd(string key, bool verbose) { Key = key; Verbose = verbose; } }