From db00e53b349b627d6f8fd3b3b639e594286093d8 Mon Sep 17 00:00:00 2001 From: Sam Twining Date: Wed, 19 Apr 2017 15:40:07 -0400 Subject: [PATCH] Add new status fields Adding new status fields to UserProfile.cs to support Slack's new status feature --- SlackAPI/UserProfile.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SlackAPI/UserProfile.cs b/SlackAPI/UserProfile.cs index 32b0fb8..d6579ad 100644 --- a/SlackAPI/UserProfile.cs +++ b/SlackAPI/UserProfile.cs @@ -13,6 +13,8 @@ public class UserProfile public string real_name; public string email; public string skype; + public string status_emoji; + public string status_text; public string phone; public string image_24; public string image_32;