ScientificReport
Report.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
4 
5 namespace ScientificReport.DAL.Entities.Reports
6 {
7  public abstract class Report : ITrackable
8  {
9  [Key]
10  virtual public Guid Id { get; set; }
11 
12  virtual public DateTime Created { get; set; }
13  virtual public DateTime Edited { get; set; }
14  }
15 }