move IEntity and IDto to Core.Abstractionns
This commit is contained in:
9
DigitalData.Core.Abstractions/Interfaces/IDto.cs
Normal file
9
DigitalData.Core.Abstractions/Interfaces/IDto.cs
Normal 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
|
||||
{
|
||||
}
|
||||
8
DigitalData.Core.Abstractions/Interfaces/IEntity.cs
Normal file
8
DigitalData.Core.Abstractions/Interfaces/IEntity.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace DigitalData.Core.Abstractions.Interfaces;
|
||||
|
||||
/// <summary>
|
||||
/// Ensures that extension methods are handled securely
|
||||
/// </summary>
|
||||
public interface IEntity
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user