oqtane.framework/Oqtane.Shared/Models/ISoftDeletable.cs
2019-09-27 18:40:24 +02:00

12 lines
216 B
C#

using System;
namespace Oqtane.Models
{
public interface ISoftDeletable
{
string DeletedBy { get; set; }
DateTime? DeletedOn { get; set; }
bool IsSoftDeleted { get; set; }
}
}