mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-23 14:02:54 +01:00
12 lines
254 B
C#
12 lines
254 B
C#
using System;
|
|
using SieveUnitTests.Abstractions.Strategy;
|
|
|
|
namespace SieveUnitTests.Abstractions.Entity
|
|
{
|
|
public interface IBaseEntity: ISupportSoftDelete
|
|
{
|
|
int Id { get; set; }
|
|
DateTimeOffset DateCreated { get; set; }
|
|
}
|
|
}
|