10 lines
189 B
C#
10 lines
189 B
C#
|
|
namespace EnotaryoPH.Web.Common.Services
|
|
{
|
|
public interface ICurrentUserService
|
|
{
|
|
string? GetEmail();
|
|
Guid GetUser_UID();
|
|
bool IsAuthenticated();
|
|
}
|
|
} |