Add basic support for SoftDeletable

This commit is contained in:
Emanuele Filardo
2019-09-19 16:52:47 +02:00
parent 4ccca043cf
commit 6ade59cc09
2 changed files with 25 additions and 0 deletions

View 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; }
}
}