using System.Collections.Generic; using System.Numerics; namespace Assets.Message.Decoding { public class SimulationAgentDto { public string Name { get; set; } public string Species { get; set; } public bool HasToBeRemoved { get; set; } public Vector3 Position { get; set; } public Dictionary Properties { get; set; } } }