15 lines
390 B
C#
15 lines
390 B
C#
|
// <copyright file="IUserGroupRepository.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="UserGroup" /> repository.
|
||
|
/// </summary>
|
||
|
public interface IUserGroupRepository : IGenericRepository<UserGroup, Guid>
|
||
|
{
|
||
|
}
|