source: src/FinkiChattery/FinkiChattery.Persistence/Models/Student.cs@ cba21c9

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

Ask question endpoint

  • Property mode set to 100644
File size: 760 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 Student : BaseEntity
10 {
11 public long ApplicationUserFk { get; set; }
12
13 public virtual ApplicationUser ApplicationUser { get; set; }
14
15 public string IndexNumber { get; set; }
16
17 public long Reputation { get; set; }
18
19 public long ReportReputation { get; set; }
20
21 public string ImageUrl { get; set; }
22
23 public virtual ICollection<Question> Questions { get; set; }
24
25 public virtual ICollection<Answer> Answers { get; set; }
26
27 public virtual ICollection<StudentTeam> StudentTeams { get; set; }
28 }
29}
Note: See TracBrowser for help on using the repository browser.