mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-23 05:52:45 +01: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; }
|
|||
|
}
|
|||
|
}
|