ScientificReport
ITrackable.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
3 
4 namespace ScientificReport.DAL.Interfaces
5 {
6  public interface ITrackable
7  {
8  [DataType(DataType.Date)]
9  DateTime Created { get; set; }
10 
11  [DataType(DataType.Date)]
12  DateTime Edited { get; set; }
13  }
14 }