using Microsoft.EntityFrameworkCore;
using TIAM.Entities.Users;
namespace TIAM.Database.DbSets.Users;
public interface IAssignedUserDbSet
{
public DbSet<UserProductMapping> UserProductMappings { get; set; }
}