using Robust.Shared.Serialization; namespace Content.Shared.Language.Events; /// /// Sent from the client to the server when it needs to want to set his currentLangauge. /// Yeah im using this instead of ExecuteCommand... Better right? /// [Serializable, NetSerializable] public sealed class LanguagesSetMessage(string currentLanguage) : EntityEventArgs { public string CurrentLanguage = currentLanguage; }