ScientificReport
CoApplicantsPatentLicenseActivities.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
3 
4 namespace ScientificReport.DAL.Entities
5 {
7  {
8 
9  [Key]
10  public Guid Id { get; set; }
11 
12  public string CoApplicant { get; set; }
13 
14  public Guid PatentLicenseActivityId { get; set; }
15 
16  public virtual PatentLicenseActivity PatentLicenseActivity { get; set; }
17  }
18 }