2022-09-08 08:04:32 -07:00

20 lines
435 B
C#

using Newtonsoft.Json;
namespace LineMessaging
{
public class LineProfile
{
[JsonProperty("displayName")]
public string DisplayName { get; set; }
[JsonProperty("userId")]
public string UserId { get; set; }
[JsonProperty("pictureUrl")]
public string PictureUrl { get; set; }
[JsonProperty("statusMessage")]
public string StatusMessage { get; set; }
}
}