// ReSharper disable InconsistentNaming using System.Collections.Generic; namespace Sony.ChartBot.Entities.MessengerApi { public class Entry { public string id { get; set; } public long time { get; set; } public IEnumerable messaging { get; set; } } }