//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
using Astral.Core.Entities;
using Astral.Core.Infrastructure;
using Astral.Core.RepositoryInterfaces;
using Injectio.Attributes;
namespace Astral.DAL.Repositories;
///
[RegisterScoped]
public class UserPresenceRepository : BaseRepository, IUserPresenceRepository
{
///
/// Initializes a new instance of the class.
///
/// Instance of .
public UserPresenceRepository(IDbConnectionProvider db)
: base(db)
{
}
}