Add basic support for SoftDeletable
This commit is contained in:
11
Oqtane.Shared/Models/ISoftDeletable.cs
Normal file
11
Oqtane.Shared/Models/ISoftDeletable.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Oqtane.Models
|
||||
{
|
||||
public interface ISoftDeletable
|
||||
{
|
||||
string DeletedBy { get; set; }
|
||||
DateTime? DeletedOn { get; set; }
|
||||
bool IsSoftDeleted { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user