using System.Collections.Generic; namespace Engine.Serialization.DTOs; internal record struct GameObjectDTO( string Id, string Name, TransformDTO Transform, List Behaviours, StateEnableDTO StateEnable );