-
Notifications
You must be signed in to change notification settings - Fork 20
/
Mentee.cs
29 lines (26 loc) · 1.01 KB
/
Mentee.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
namespace DevnotMentor.Data.Entities
{
public partial class Mentee
{
public Mentee()
{
MenteeAnswers = new HashSet<MenteeAnswer>();
MenteeLinks = new HashSet<MenteeLink>();
MenteeTags = new HashSet<MenteeTag>();
Applications = new HashSet<Application>();
Mentorships = new HashSet<Mentorship>();
}
public int Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public int? UserId { get; set; }
public virtual User User { get; set; }
public virtual ICollection<MenteeAnswer> MenteeAnswers { get; set; }
public virtual ICollection<MenteeLink> MenteeLinks { get; set; }
public virtual ICollection<MenteeTag> MenteeTags { get; set; }
public virtual ICollection<Application> Applications { get; set; }
public virtual ICollection<Mentorship> Mentorships { get; set; }
}
}