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