Last change
on this file since 333cdac 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 | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 |
|
---|
5 | namespace 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.