// ReSharper disable InconsistentNaming using System.Collections.Generic; namespace Sony.ChartBot.Entities.MessengerApi { public class Payload { public string template_type { get; set; } public IEnumerable elements { get; set; } } }