I want to transfer a string aray in my url to a mvc controller .
My controller method is
public ActionResult Index(MyModel model)
and I want My model to be
public class TagEditRequestVM
{
public string ValueA { get; set; }
public List<string> MyList { get; set; }
}
what is the best url structure to call it?