| @@ -17,37 +17,37 @@ namespace Discord | |||||
| ThreadType Type { get; } | ThreadType Type { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// <see langword="true"/> if the current user has joined this thread, otherwise <see langword="false"/>. | |||||
| /// Gets whether or not the current user has joined this thread. | |||||
| /// </summary> | /// </summary> | ||||
| bool HasJoined { get; } | bool HasJoined { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// <see langword="true"/> if the current thread is archived, otherwise <see langword="false"/>. | |||||
| /// Gets whether or not the current thread is archived. | |||||
| /// </summary> | /// </summary> | ||||
| bool IsArchived { get; } | bool IsArchived { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// Duration to automatically archive the thread after recent activity. | |||||
| /// Gets the duration of time before the thread is automatically archived after no activity. | |||||
| /// </summary> | /// </summary> | ||||
| ThreadArchiveDuration AutoArchiveDuration { get; } | ThreadArchiveDuration AutoArchiveDuration { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// Timestamp when the thread's archive status was last changed, used for calculating recent activity. | |||||
| /// Gets the timestamp when the thread's archive status was last changed, used for calculating recent activity. | |||||
| /// </summary> | /// </summary> | ||||
| DateTimeOffset ArchiveTimestamp { get; } | DateTimeOffset ArchiveTimestamp { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// <see langword="true"/> if the current thread is locked, otherwise <see langword="false"/> | |||||
| /// Gets whether or not the current thread is locked. | |||||
| /// </summary> | /// </summary> | ||||
| bool IsLocked { get; } | bool IsLocked { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// An approximate count of users in a thread, stops counting at 50. | |||||
| /// Gets an approximate count of users in a thread, stops counting after 50. | |||||
| /// </summary> | /// </summary> | ||||
| int MemberCount { get; } | int MemberCount { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// An approximate count of messages in a thread, stops counting at 50. | |||||
| /// Gets an approximate count of messages in a thread, stops counting after 50. | |||||
| /// </summary> | /// </summary> | ||||
| int MessageCount { get; } | int MessageCount { get; } | ||||