create IEntity and IDto interfaces

This commit is contained in:
tekh 2025-09-11 18:03:55 +02:00
parent 7c2a165479
commit b181e1543f

View File

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