1
0
mirror of synced 2025-02-12 08:52:57 +01:00

13 lines
305 B
C#
Raw Normal View History

using Domain.Entities;
using Microsoft.EntityFrameworkCore;
namespace Application.Interfaces;
public interface IMusicDbContext
{
public DbSet<MusicAou> MusicAous { get; set; }
public DbSet<MusicExtra> MusicExtras { get; set; }
public DbSet<MusicUnlock> MusicUnlocks { get; set; }
}