feat: SeString override ToString() with TextValue

This commit is contained in:
goat 2020-12-08 12:09:09 +01:00
parent ef999d3352
commit e7cd071c0f

View file

@ -104,6 +104,14 @@ namespace Dalamud.Game.Chat.SeStringHandling
return messageBytes.ToArray();
}
/// <summary>
/// Get the text value of this SeString.
/// </summary>
/// <returns>The TextValue property</returns>
public override string ToString() {
return TextValue;
}
/// <summary>
/// Serializes the SeString to json
/// </summary>