Last change
on this file since d8fafb8 was e42f61a, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Add more services
|
-
Property mode
set to
100644
|
File size:
322 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 | using System.ComponentModel.DataAnnotations;
|
---|
5 |
|
---|
6 | namespace 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.