using System; using System.Collections.Generic; using System.Text; namespace ReallifeGamemode.Server.Types { public class VehicleData { public bool EngineState { get; set; } public bool Locked { get; set; } } }