Skip to content

Instantly share code, notes, and snippets.

@babaktaremi
Created August 22, 2021 12:01
Show Gist options
  • Save babaktaremi/c8c0bb4e0ac072b97c3f3929c5ae86b4 to your computer and use it in GitHub Desktop.
Save babaktaremi/c8c0bb4e0ac072b97c3f3929c5ae86b4 to your computer and use it in GitHub Desktop.
namespace ChatApplication.Shared.Chat
{
public class UserMessageViewModel
{
public string MessageContent { get; set; }
public string UserName { get; set; }
public string MessageDate { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment