using System.ComponentModel.DataAnnotations;
using System.Collections.Generic;
namespace HelloWorldMvcApp
public string Title { get; set; }
public DateTime Time { get; set; }
public class SampleViewModel
public IList<SomeModel> SomeModels { get; set; }
SomeModels = new List<SomeModel>();
SomeModels.Add(new SomeModel()