// ReSharper disable InconsistentNaming using System.Collections.Generic; namespace Sony.ChartBot.Entities.MessengerApi { public class Setting { public string setting_type { get; set; } public string thread_state { get; set; } public IEnumerable call_to_actions { get; set; } } }