Skip to content

Instantly share code, notes, and snippets.

@winstongubantes
Last active February 9, 2017 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save winstongubantes/4d11ebf81a13eee3e78882cc3d80fd49 to your computer and use it in GitHub Desktop.
Save winstongubantes/4d11ebf81a13eee3e78882cc3d80fd49 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConversationApp.Models
{
public class Message
{
public string Id { get; set; }
public string Sender { get; set; }
public string Messagetext { get; set; }
public string UserImageUrl { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment