using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace AttributeRoutingDemoInMVC.Models { public class Student { public int Id { get; set; } public string Name { get; set; } } }