16 lines
365 B
C#
16 lines
365 B
C#
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
|
|
{
|
|
} |