私は次のクラスを持っています:
public class CityViewModel
{
public City City { get; set; }
public IList<CityDetail> CityDetails { get; set; }
public class CityDetail()
{
public CityDetail() {
Text = new HtmlText();
ImageFile = String.Empty;
Correct = false;
Explanation = new HtmlText();
}
public bool Correct { get; set; }
public HtmlText Text { get; set; }
public string ImageFile { get; set; }
public HtmlText Explanation { get; set; }
}
私が次のようなことをするとき、どうすればそれを作ることができますか?var model = new CityViewModel();
CityViewModel
10CityDetail
レコードで作成するということですか?