Rename Interface in IDeletable and property in IsDeleted

This commit is contained in:
Emanuele Filardo
2019-09-27 18:50:25 +02:00
parent 182a156bd8
commit 4792ea697b
2 changed files with 13 additions and 12 deletions

View File

@ -0,0 +1,11 @@
using System;
namespace Oqtane.Shared
{
public interface IDeletable
{
string DeletedBy { get; set; }
DateTime? DeletedOn { get; set; }
bool IsDeleted { get; set; }
}
}