16 lines
452 B
C#
16 lines
452 B
C#
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using xDataService.Providers;
|
|
using xFileService.Models.Entities;
|
|
|
|
namespace xFileService.Configurations.Entities
|
|
{
|
|
public class XFileEntityConfiguration : XBaseEntityTypeConfiguration<XFile, Guid>
|
|
{
|
|
public override void Configure(EntityTypeBuilder<XFile> builder)
|
|
{
|
|
builder.ToTable("Files");
|
|
}
|
|
}
|
|
} |