I have the following properties in a model:
public List<string[]> Imagens { get; set; }
public string[] Video { get; set; }
public string[] Audio { get; set; }
There in my Controller I'm checking if ModelState.isValid
I just wanted the string array in the image list to have two positions. But I do not know how to create this. My attempt was to create this
public List<string[2]> Imagens { get; set; }
But it does not work, and I need the array to have 2 values inside.