using System.Collections.Generic; using Sony.ChartBot.Entities.MessengerApi; using Sony.ChartBot.Entities.Storage; namespace Sony.ChartBot.Messages.MessageBuilders { public class CourtesyMessageBuilder : IMessageBuilder { public ResponseType ResponseType => ResponseType.Succeeded; public IEnumerable BuildMessages() { var text = "Oh. Was that small talk? 😨 I'm really not good at that. Better ask me for a chart position!"; return new[] { new MessageToSend { text = text } }; } } }