Skip to content

Instantly share code, notes, and snippets.

@KyleGobel
Created April 5, 2014 03:01
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 KyleGobel/9986925 to your computer and use it in GitHub Desktop.
Save KyleGobel/9986925 to your computer and use it in GitHub Desktop.
Proposed Model: This is what the bot will receive from redis for each Message
namespace Hipchat.Models
{
public class HipchatMessage
{
public int RoomId { get; set; }
public string RoomName { get; set; }
public string MessageSent { get; set; }
public string MentionName { get; set; }
public DateTime DateSent { get; set; }
public string FileUrl { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment