Skip to content

Commit

Permalink
Adding User & IsUserDeleted properties to Conversation
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Oxtoby committed May 23, 2020
1 parent 2fcfe7d commit 3989f0d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions SlackNet/Objects/Conversation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,15 @@ public class Conversation
/// A list of user IDs for all users in this channel. This includes any disabled accounts that were in this channel when they were disabled.
/// </summary>
public IList<string> Members { get; set; } = new List<string>();

/// <summary>
/// The other user in an IM.
/// </summary>
public string User { get; set; }

/// <summary>
/// Has the other user in an IM been deleted.
/// </summary>
public bool IsUserDeleted { get; set; }
}
}

0 comments on commit 3989f0d

Please sign in to comment.