Enhancement to support audit fields on entities
This commit is contained in:
12
Oqtane.Shared/Models/IAuditable.cs
Normal file
12
Oqtane.Shared/Models/IAuditable.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace Oqtane.Models
|
||||
{
|
||||
public interface IAuditable
|
||||
{
|
||||
string CreatedBy { get; set; }
|
||||
DateTime CreatedOn { get; set; }
|
||||
string ModifiedBy { get; set; }
|
||||
DateTime ModifiedOn { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user