mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 10:34:22 +00:00
12 lines
208 B
C#
12 lines
208 B
C#
using System;
|
|
|
|
namespace Oqtane.Models
|
|
{
|
|
public interface IDeletable
|
|
{
|
|
string DeletedBy { get; set; }
|
|
DateTime? DeletedOn { get; set; }
|
|
bool IsDeleted { get; set; }
|
|
}
|
|
}
|