new Topic("/abc", "Test"),
new Topic("/qwe", "Another Test"),
new Topic("/zxc", "Some Name"),
string.Join(", ", topics.Select(topic => new { value = $"'{topic.Url}'", label = $"'{topic.Name}'" })).Dump();
public record Topic(string Url, string Name);