using Sony.ChartBot.Entities.ChartApi; using Sony.ChartBot.Entities.MessengerApi; namespace Sony.ChartBot.Client.InputParsers { public class ArtistInputParser : IInputParser { public Artist ParseInput(string text) { // No parsing - just input as artist name return new Artist { Name = text.Trim() }; } } }