using Microsoft.EntityFrameworkCore; namespace DCGEngine.Database.Interfaces; public interface IDataSeeder { void Seed(ModelBuilder builder); }