17 lines
456 B
C#
17 lines
456 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ContosoUniversity.Models
|
|
{
|
|
public class OfficeAssignment
|
|
{
|
|
[Key]
|
|
[ForeignKey("Instructor")]
|
|
public int InstructorID { get; set; }
|
|
[StringLength(50)]
|
|
[Display(Name = "Office Location")]
|
|
public string Location { get; set; }
|
|
|
|
public virtual Instructor Instructor { get; set; }
|
|
}
|
|
} |