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

13 lines
249 B
C#
Raw Normal View History

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