8 lines
197 B
C#
8 lines
197 B
C#
namespace AMREZ.EOP.Contracts.DTOs.HumanResources.Employment;
|
|
|
|
public sealed record EmploymentResponse(
|
|
Guid Id,
|
|
Guid UserProfileId,
|
|
DateTime StartDate,
|
|
DateTime? EndDate
|
|
); |