Newer
Older
TheCleanArchitecture / src / Application / Common / Interfaces / ICurrentUserService.cs
@Derek Comartin Derek Comartin on 15 Jun 2021 149 bytes Reorganized
namespace CleanArchitecture.Application.Common.Interfaces
{
    public interface ICurrentUserService
    {
        string UserId { get; }
    }
}