move IEntity and IDto to Core.Abstractionns

This commit is contained in:
2025-09-12 15:05:40 +02:00
parent ad734f77f9
commit 1c69eb48cd
6 changed files with 17 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
namespace DigitalData.Core.Abstractions.Interfaces;
/// <summary>
/// Ensures that extension methods are handled securely
/// </summary>
/// <typeparam name="Entity"></typeparam>
public interface IDto<Entity> where Entity : IEntity
{
}

View File

@@ -0,0 +1,8 @@
namespace DigitalData.Core.Abstractions.Interfaces;
/// <summary>
/// Ensures that extension methods are handled securely
/// </summary>
public interface IEntity
{
}