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
RevLine 
[a8ccc2c]1using System;
2using System.Collections.Generic;
3using System.Text;
[e42f61a]4using System.ComponentModel.DataAnnotations;
[a8ccc2c]5
6namespace FarmatikoData.Base
7{
8 public class BaseEntity
9 {
10 public int Id { get; set; }
11 public DateTime CreatedOn { get; set; }
[e42f61a]12 public DateTime? DeletedOn { get; set; }
[a8ccc2c]13 }
14}
Note: See TracBrowser for help on using the repository browser.