0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-06-30 10:33:43 +00:00
CleanArchitecture/CleanArchitecture.Domain/Interfaces/IUser.cs
Alexander Konietzko b36aaff112
Add User auth
2023-03-17 08:44:51 +01:00

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; }
}