13 lines
249 B
C#
13 lines
249 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|