8 lines
184 B
C#
8 lines
184 B
C#
namespace AMREZ.EOP.Contracts.DTOs.HumanResources.UserProfile;
|
|
|
|
public sealed record UserProfileResponse(
|
|
Guid Id,
|
|
Guid UserId,
|
|
string FirstName,
|
|
string LastName
|
|
); |