dotnettutorial-asp-dot-net-mvc/AttributeRoutingDemoInMVC/Models/Student.cs

13 lines
249 B
C#

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; }
}
}