astral-api/Astral.DAL/Repositories/UserLockerRepository.cs
Mike 81aa0ec1c0
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
WIP heartbeat and user presence
2024-12-15 16:06:14 +00:00

24 lines
785 B
C#

// <copyright file="UserLockerRepository.cs" company="alveus.dev">
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
// </copyright>
using Astral.Core.Entities;
using Astral.Core.Infrastructure;
using Astral.Core.RepositoryInterfaces;
using Injectio.Attributes;
namespace Astral.DAL.Repositories;
/// <inheritdoc cref="IUserLockerRepository" />
[RegisterScoped]
public class UserLockerRepository : BaseRepository<UserLocker, Guid>, IUserLockerRepository
{
/// <summary>
/// Initializes a new instance of the <see cref="UserLockerRepository"/> class.
/// </summary>
/// <param name="db">Instance of <see cref="IDbConnectionProvider"/>.</param>
public UserLockerRepository(IDbConnectionProvider db)
: base(db)
{
}
}