12 lines
233 B
C#
12 lines
233 B
C#
using Knot.Shared.Kernel;
|
|
|
|
namespace Knot.Modules.Auth.Application.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Unit of Work специфичный для модуля Identity.
|
|
/// </summary>
|
|
public interface IAuthUnitOfWork : IUnitOfWork
|
|
{
|
|
}
|
|
|