using System.Collections.Generic; using Sony.ChartBot.Entities.MessengerApi; using Sony.ChartBot.Entities.Storage; namespace Sony.ChartBot.Messages.MessageBuilders { public class NextArtistMessageBuilder : IMessageBuilder { public ResponseType ResponseType => ResponseType.Succeeded; public IEnumerable BuildMessages() { var text = "OK! What artist is next?"; return new[] { new MessageToSend { text = text } }; } } }