Skip to content

Instantly share code, notes, and snippets.

@babaktaremi
Created August 24, 2021 06:40
Show Gist options
  • Save babaktaremi/c71258dc8df3bb191ee0084ba54c608d to your computer and use it in GitHub Desktop.
Save babaktaremi/c71258dc8df3bb191ee0084ba54c608d to your computer and use it in GitHub Desktop.
namespace ChatApplication.Client.Service.Chat
{
public interface IChatService
{
Task<List<UserMessageViewModel>> GetMessages(string token);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment