Skip to content

Commit b388554

Browse files
authored
team_join: add is_bot on user (#22)
1 parent fd43762 commit b388554

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

source/src/Slackbot.Net.Endpoints/Models/Events/TeamJoinEvent.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ public class JoiningUser
1010
public string Id { get; set; }
1111
public string Name { get; set; }
1212
public string Real_Name { get; set; }
13-
public JoiningUserProfile? Profile { get; set; }
13+
public bool Is_Bot { get; set; }
14+
public bool Is_App_User { get; set; }
15+
public JoiningUserProfile Profile { get; set; }
1416
}
1517

1618
public class JoiningUserProfile

0 commit comments

Comments
 (0)