diff --git a/source/src/Slackbot.Net.Endpoints/Models/Events/TeamJoinEvent.cs b/source/src/Slackbot.Net.Endpoints/Models/Events/TeamJoinEvent.cs index a48247b..e10c62b 100644 --- a/source/src/Slackbot.Net.Endpoints/Models/Events/TeamJoinEvent.cs +++ b/source/src/Slackbot.Net.Endpoints/Models/Events/TeamJoinEvent.cs @@ -10,7 +10,9 @@ public class JoiningUser public string Id { get; set; } public string Name { get; set; } public string Real_Name { get; set; } - public JoiningUserProfile? Profile { get; set; } + public bool Is_Bot { get; set; } + public bool Is_App_User { get; set; } + public JoiningUserProfile Profile { get; set; } } public class JoiningUserProfile