8 lines
149 B
C#
8 lines
149 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace DCGEngine.Database.Interfaces;
|
|
|
|
public interface IDataSeeder
|
|
{
|
|
void Seed(ModelBuilder builder);
|
|
} |