11 lines
271 B
C#
11 lines
271 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace DCGEngine.Database.Interfaces;
|
|
|
|
/// <summary>
|
|
/// Indicates a class should have a <see cref="DbSet{TEntity}"/> created and be tracked by the <see cref="DbContext"/>.
|
|
/// </summary>
|
|
public interface IDbTrackedEntity
|
|
{
|
|
|
|
} |