20 lines
435 B
C#
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; }
|
|
}
|
|
}
|