Table of Contents

Interface IAuditable

Namespace
Oqtane.Models
Assembly
Oqtane.Shared.dll

Basic create/edit information - used in many objects.

public interface IAuditable

Properties

CreatedBy

Username of the creator of this Object.

string CreatedBy { get; set; }

Property Value

string

CreatedOn

Created Timestamp for this Object.

DateTime CreatedOn { get; set; }

Property Value

DateTime

ModifiedBy

Username of the last user who modified this Object.

string ModifiedBy { get; set; }

Property Value

string

ModifiedOn

Modified Timestamp for this Object.

DateTime ModifiedOn { get; set; }

Property Value

DateTime