StyleCop: everything else

This commit is contained in:
Raymond Lynch 2021-05-30 07:10:00 -04:00
parent f64c9b8321
commit 595fd3f1e4
134 changed files with 16346 additions and 6202 deletions

View file

@ -2,15 +2,34 @@ using System;
namespace Dalamud.Game.Text
{
public sealed class XivChatEntry {
/// <summary>
/// This class represents a single chat log entry.
/// </summary>
public sealed class XivChatEntry
{
/// <summary>
/// Gets or sets the type of entry.
/// </summary>
public XivChatType Type { get; set; } = XivChatType.Debug;
/// <summary>
/// Gets or sets the sender ID.
/// </summary>
public uint SenderId { get; set; }
/// <summary>
/// Gets or sets the sender name.
/// </summary>
public string Name { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the message bytes.
/// </summary>
public byte[] MessageBytes { get; set; }
/// <summary>
/// Gets or sets the message parameters.
/// </summary>
public IntPtr Parameters { get; set; }
}
}