mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-22 21:42:38 +01:00
11 lines
190 B
C#
11 lines
190 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SieveUnitTests.Abstractions.Entity
|
|||
|
{
|
|||
|
public interface IBaseEntity
|
|||
|
{
|
|||
|
int Id { get; set; }
|
|||
|
DateTimeOffset DateCreated { get; set; }
|
|||
|
}
|
|||
|
}
|