12 lines
322 B
C#
12 lines
322 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using xServices.Models.Entities;
|
|
|
|
namespace xServices.Configurations
|
|
{
|
|
public class XTestConfiguration : IEntityTypeConfiguration<XTest>
|
|
{
|
|
public void Configure(EntityTypeBuilder<XTest> builder)
|
|
{ }
|
|
}
|
|
} |