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