Sieve/SieveUnitTests/Abstractions/Strategy/ISupportSoftDelete.cs

11 lines
192 B
C#
Raw Normal View History

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