ScientificReport
ScientificInternship.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel.DataAnnotations;
5 
6 namespace ScientificReport.DAL.Entities
7 {
8  public class ScientificInternship
9  {
10  [Key]
11  public Guid Id { get; set; }
12 
13  public string PlaceOfInternship { get; set; }
14 
15  [DataType(DataType.Date)]
16  public DateTime Started { get; set; }
17 
18  [DataType(DataType.Date)]
19  public DateTime Ended { get; set; }
20 
21  public string Contents { get; set; }
22 
23  public virtual ICollection<UserProfilesScientificInternships> UserProfilesScientificInternships { get; set; }
24  }
25 }