10 lines
218 B
C#
10 lines
218 B
C#
using Sufi.Demo.PeopleDirectory.Application.Contracts.Common;
|
|
|
|
namespace Sufi.Demo.PeopleDirectory.Application.Contracts.Services
|
|
{
|
|
public interface ICurrentUserService : IService
|
|
{
|
|
string? UserId { get; }
|
|
}
|
|
}
|