source: FarmatikoData/Base/BaseEntity.cs@ c406ae5

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

Add more services

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