source: FarmatikoData/Base/BaseEntity.cs@ 171f106

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

Add BaseEntity class and it's inheritance

  • Property mode set to 100644
File size: 228 bytes
RevLine 
[171f106]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 }
12}
Note: See TracBrowser for help on using the repository browser.