mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-18 05:47:43 +01:00
StyleCop: everything else
This commit is contained in:
parent
f64c9b8321
commit
595fd3f1e4
134 changed files with 16346 additions and 6202 deletions
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue