Sieve/SieveUnitTests/Abstractions/Strategy/ISupportSoftDelete.cs
2023-02-23 01:11:34 +03:00

11 lines
192 B
C#

using System;
namespace SieveUnitTests.Abstractions.Strategy
{
public interface ISupportSoftDelete
{
string DeletedBy { get; }
DateTime? DeletedAt { get; }
}
}