Files
SVSimServer/DCGEngine.Database/Interfaces/IDbTrackedEntity.cs
gamer147 ee7e276036 Updates
2024-09-05 08:32:54 -04:00

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
{
}