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