public void AddEmotion(EmotionDTO newEmotion)
        {
            var resultingEmotion = _rpcAsset.AddActiveEmotion(newEmotion);

            Emotions.DataSource.Add(resultingEmotion);
            Emotions.Refresh();
        }