ScientificReport
Opposition.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
3 
4 namespace ScientificReport.DAL.Entities
5 {
6  public class Opposition
7  {
8  [Key]
9  public Guid Id { get; set; }
10 
11  public string About { get; set; }
12 
13  [DataType(DataType.Date)]
14  public DateTime DateOfOpposition { get; set; }
15 
16  public virtual UserProfile.UserProfile Opponent { get; set; }
17  }
18 }