create IEntity and IDto interfaces
This commit is contained in:
parent
7c2a165479
commit
b181e1543f
@ -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
|
||||||
|
{
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user