// ReSharper disable InconsistentNaming namespace Sony.ChartBot.Entities.MessengerApi { public class UserData { public string id { get; set; } public string name { get; set; } public string first_name { get; set; } public string last_name { get; set; } public string profile_pic { get; set; } public string locale { get; set; } public int timezone { get; set; } public string gender { get; set; } } }