14 lines
393 B
C#
14 lines
393 B
C#
// <copyright file="IUserLockerRepository.cs" company="alveus.dev">
|
|
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
|
|
// </copyright>
|
|
|
|
using Astral.Core.Entities;
|
|
|
|
namespace Astral.Core.RepositoryInterfaces;
|
|
|
|
/// <summary>
|
|
/// <see cref="UserLocker"/> Repository.
|
|
/// </summary>
|
|
public interface IUserLockerRepository : IGenericRepository<UserLocker, Guid>
|
|
{
|
|
}
|