XivChatEntry should use SeString

This commit is contained in:
Raymond 2021-07-15 22:09:31 -04:00
parent 85113e263f
commit 5c4ed3f715
7 changed files with 27 additions and 16 deletions

View file

@ -1,5 +1,7 @@
using System;
using Dalamud.Game.Text.SeStringHandling;
namespace Dalamud.Game.Text
{
/// <summary>
@ -20,12 +22,12 @@ namespace Dalamud.Game.Text
/// <summary>
/// Gets or sets the sender name.
/// </summary>
public string Name { get; set; } = string.Empty;
public SeString Name { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the message bytes.
/// Gets or sets the message.
/// </summary>
public byte[] MessageBytes { get; set; }
public SeString Message { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the message parameters.