Add standard audit fields to all entities
This commit is contained in:
@ -1,6 +1,8 @@
|
||||
namespace Oqtane.Models
|
||||
using System;
|
||||
|
||||
namespace Oqtane.Models
|
||||
{
|
||||
public class PageModule
|
||||
public class PageModule : IAuditable
|
||||
{
|
||||
public int PageModuleId { get; set; }
|
||||
public int PageId { get; set; }
|
||||
@ -10,6 +12,12 @@
|
||||
public int Order { get; set; }
|
||||
public string ContainerType { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
public DateTime CreatedOn { get; set; }
|
||||
public string ModifiedBy { get; set; }
|
||||
public DateTime ModifiedOn { get; set; }
|
||||
|
||||
|
||||
public Module Module { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user