13 lines
310 B
C#
Raw Permalink Normal View History

2023-08-15 23:52:30 -04:00
using Microsoft.EntityFrameworkCore;
namespace DamageAssesment.Api.Attachments.Db
{
public class AttachmentsDbContext:DbContext
{
public AttachmentsDbContext(DbContextOptions options) : base(options)
{
}
public DbSet<Db.Attachment> Attachments { get; set; }
}
}