ScientificReport
UserProfilesPublications.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
4 
5 namespace ScientificReport.DAL.Entities.UserProfile
6 {
8  {
9  [Key]
10  public Guid Id { get; set; }
11 
12  public Guid UserProfileId { get; set; }
13  public virtual UserProfile UserProfile { get; set; }
14 
15  public Guid PublicationId { get; set; }
16  public virtual Publication Publication { get; set; }
17  }
18 }