You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Api.GroupMe/Models/SendMessageResponse.cs

26 lines
752 B

namespace Ombi.Api.GroupMe.Models
{
public class SendResponse
{
public Message message { get; set; }
}
public class Message
{
public string id { get; set; }
public string source_guid { get; set; }
public int created_at { get; set; }
public string user_id { get; set; }
public string group_id { get; set; }
public string name { get; set; }
public string avatar_url { get; set; }
public string text { get; set; }
public bool system { get; set; }
public object[] attachments { get; set; }
public object[] favorited_by { get; set; }
public string sender_type { get; set; }
public string sender_id { get; set; }
}
}