// New Frontiers - This file is licensed under AGPLv3 // Copyright (c) 2024 New Frontiers Contributors // See AGPLv3.txt for details. using Content.Shared.Shuttles.Components; using Robust.Shared.Serialization; namespace Content.Shared._NF.Shuttles.Events { /// /// Raised on the client when it wishes to change the inertial dampening of a ship. /// [Serializable, NetSerializable] public sealed class SetServiceFlagsRequest : BoundUserInterfaceMessage { public NetEntity? ShuttleEntityUid { get; set; } public ServiceFlags ServiceFlags { get; set; } } }