/// <summary>
 /// Create a new chat with only the caller as a member
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='chatName'>
 /// </param>
 public static ChatDTO CreateChat(this IChats operations, string chatName)
 {
     return(operations.CreateChatAsync(chatName).GetAwaiter().GetResult());
 }