Last change
on this file since 171f106 was 171f106, checked in by DimitarSlezenkovski <dslezenkovski@…>, 3 years ago |
Add BaseEntity class and it's inheritance
|
-
Property mode
set to
100644
|
File size:
228 bytes
|
Rev | Line | |
---|
[171f106] | 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 | }
|
---|
| 12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.