source: FarmatikoData/Base/BaseEntity.cs@ f33b0d4

Last change on this file since f33b0d4 was f33b0d4, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Add migration and DeletedOn property

  • Property mode set to 100644
File size: 276 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace FarmatikoData.Base
6{
7 public class BaseEntity
8 {
9 public int Id { get; set; }
10 public DateTime CreatedOn { get; set; }
11 public DateTime DeletedOn { get; set; }
12 }
13}
Note: See TracBrowser for help on using the repository browser.