source: src/FinkiChattery/FinkiChattery.Persistence/Models/Teacher.cs@ 7146ebb

dev
Last change on this file since 7146ebb was 7146ebb, checked in by Стојков Марко <mst@…>, 3 years ago

Ask question endpoint

  • Property mode set to 100644
File size: 416 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace FinkiChattery.Persistence.Models
8{
9 public class Teacher : BaseEntity
10 {
11 public long ApplicationUserFk { get; set; }
12
13 public virtual ApplicationUser ApplicationUser { get; set; }
14
15 public virtual ICollection<TeacherTeam> TeacherTeams { get; set; }
16
17 }
18}
Note: See TracBrowser for help on using the repository browser.