structured logging
This commit is contained in:
11
Oqtane.Shared/Interfaces/IDeletable.cs
Normal file
11
Oqtane.Shared/Interfaces/IDeletable.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Oqtane.Models
|
||||
{
|
||||
public interface IDeletable
|
||||
{
|
||||
string DeletedBy { get; set; }
|
||||
DateTime? DeletedOn { get; set; }
|
||||
bool IsDeleted { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user