예제 #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);
 }