introduced a ModelBase to move the IAuditable properties to a base class

This commit is contained in:
Shaun Walker
2022-10-26 17:12:03 -04:00
parent e27a625069
commit 1daa9575db
2 changed files with 13 additions and 14 deletions

View File

@ -0,0 +1,12 @@
using System;
namespace Oqtane.Models
{
public class ModelBase : IAuditable
{
public string CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }
public string ModifiedBy { get; set; }
public DateTime ModifiedOn { get; set; }
}
}