mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 18:42:56 +00:00
12 lines
232 B
C#
12 lines
232 B
C#
using System;
|
|
using CleanArchitecture.Domain.Enums;
|
|
|
|
namespace CleanArchitecture.Domain.Interfaces;
|
|
|
|
public interface IUser
|
|
{
|
|
string Name { get; }
|
|
Guid GetUserId();
|
|
UserRole GetUserRole();
|
|
string GetUserEmail();
|
|
} |