我的网络表单中有这个选项列表:
我想以模型为先。但我对 MVC 和模型优先非常陌生,所以我不知道如何在我的模型类中更好地表示这一点。
我应该为每个项目制作一个属性吗?或者我应该制作一个数组,其中每个位置都是一个选项(也许使用enums
)?
public bool[] Comportamento { get; set; }
// or
public Comportamento[] Comportamento { get; set; }
// or
public bool Manso { get; set; }
public bool Arisco { get; set; }
...