mirror of
https://github.com/Biarity/Sieve.git
synced 2025-07-06 19:13:17 +02: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; }
|
|
}
|
|
}
|