-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #245 from AoshiW/PRIVMSG-tags
Changelog 2023‑08‑04
- Loading branch information
Showing
3 changed files
with
40 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,41 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace TwitchLib.Client.Models | ||
namespace TwitchLib.Client.Models | ||
{ | ||
/// <summary>Class representing a chat reply/thread</summary> | ||
public class ChatReply | ||
{ | ||
/// <summary>Property representing the display name of the responded to message</summary> | ||
/// <summary> | ||
/// The display name of the sender of the direct parent message. | ||
/// </summary> | ||
public string ParentDisplayName { get; internal set; } | ||
|
||
/// <summary>Property representing the message contents of the responded to message</summary> | ||
/// <summary> | ||
/// The text of the direct parent message. | ||
/// </summary> | ||
public string ParentMsgBody { get; internal set; } | ||
|
||
/// <summary>Property representing the id of the responded to message</summary> | ||
/// <summary> | ||
/// An ID that uniquely identifies the direct parent message that this message is replying to. | ||
/// </summary> | ||
public string ParentMsgId { get; internal set; } | ||
|
||
/// <summary>Property representing the user id of the sender of the responded to message</summary> | ||
/// <summary> | ||
/// An ID that identifies the sender of the direct parent message. | ||
/// </summary> | ||
public string ParentUserId { get; internal set; } | ||
|
||
/// <summary>Property representing the user login of the sender of the responded to message</summary> | ||
/// <summary> | ||
/// The login name of the sender of the direct parent message. | ||
/// </summary> | ||
public string ParentUserLogin { get; internal set; } | ||
|
||
/// <summary> | ||
/// An ID that uniquely identifies the top-level parent message of the reply thread that this message is replying to. | ||
/// </summary> | ||
public string ThreadParentMsgId { get; internal set; } | ||
|
||
/// <summary> | ||
/// The login name of the sender of the top-level parent message. | ||
/// </summary> | ||
public string ThreadParentUserLogin { get; internal set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters