14 lines
398 B
C#
14 lines
398 B
C#
// <copyright file="IUserProfileRepository.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="UserProfile" /> repository.
|
|
/// </summary>
|
|
public interface IUserProfileRepository : IGenericRepository<UserProfile, Guid>
|
|
{
|
|
}
|