first commit
This commit is contained in:
11
MyNewProjectName.Domain/Common/ISoftDelete.cs
Normal file
11
MyNewProjectName.Domain/Common/ISoftDelete.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace MyNewProjectName.Domain.Common;
|
||||
|
||||
/// <summary>
|
||||
/// Interface for soft delete functionality
|
||||
/// </summary>
|
||||
public interface ISoftDelete
|
||||
{
|
||||
bool IsDeleted { get; set; }
|
||||
DateTime? DeletedAt { get; set; }
|
||||
string? DeletedBy { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user