9 lines
239 B
C#
9 lines
239 B
C#
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
|
|
{
|
|
} |