Files
amrez-nova-eop-services-api/AMREZ.EOP.Contracts/DTOs/HumanResources/Employment/EmploymentResponse.cs
Thanakarn Klangkasame 92e614674c Init Git
2025-09-30 11:01:02 +07:00

8 lines
197 B
C#

namespace AMREZ.EOP.Contracts.DTOs.HumanResources.Employment;
public sealed record EmploymentResponse(
Guid Id,
Guid UserProfileId,
DateTime StartDate,
DateTime? EndDate
);