mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-23 14:02:54 +01:00
11 lines
192 B
C#
11 lines
192 B
C#
using System;
|
|
|
|
namespace SieveUnitTests.Abstractions.Strategy
|
|
{
|
|
public interface ISupportSoftDelete
|
|
{
|
|
string DeletedBy { get; }
|
|
DateTime? DeletedAt { get; }
|
|
}
|
|
}
|