Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created February 19, 2019 10:30
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 icebeam7/4228e899757cad773b3c0e20337c44e4 to your computer and use it in GitHub Desktop.
Save icebeam7/4228e899757cad773b3c0e20337c44e4 to your computer and use it in GitHub Desktop.
WeatherBotv4App - Message.cs
namespace WeatherBotv4App.Models
{
public class Message
{
public string Text { get; set; }
public string User { get; set; }
public Message(string text, string user)
{
Text = text;
User = user;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment