mirror of
https://github.com/Biarity/Sieve.git
synced 2025-06-30 16:44:45 +02:00
13 lines
251 B
C#
13 lines
251 B
C#
using System;
|
|
|
|
namespace SieveUnitTests.Abstractions.Strategy
|
|
{
|
|
public interface IAudit
|
|
{
|
|
string CreatedBy { get; }
|
|
DateTime? CreatedAt { get; }
|
|
string UpdatedBy { get; }
|
|
DateTime? UpdatedAt { get; }
|
|
}
|
|
}
|