using System.Collections.Generic;
namespace Engine.Serialization;
public class BehaviourControllerDto : ClassInterchangeableDto
{
public Dictionary<string, object?> Behaviours { get; set; } = [];
}