Skip to content

Instantly share code, notes, and snippets.

@dhinag
Created September 11, 2018 23:18
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 dhinag/51b8a609d67fd1f76611579411f09a70 to your computer and use it in GitHub Desktop.
Save dhinag/51b8a609d67fd1f76611579411f09a70 to your computer and use it in GitHub Desktop.
public class QueueMessage
{
public string ChannelID { get; set; }
public string FromID { get; set; }
public string FromName { get; set; }
public string RecipientID { get; set; }
public string RecipientName { get; set; }
public string ConversationID { get; set; }
public string ServiceURL { get; set; }
public string Alert { get; set; }
public string MessageText { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment