コード例 #1
0
 public static bool IsNormal(this Models.Chat chat)
 {
     return(chat != null && chat.GetType() == Chat.Type.Normal);
 }
コード例 #2
0
 public static bool IsGroup(this Models.Chat chat)
 {
     return(chat != null && chat.GetType() == Chat.Type.Group);
 }