Add Fake Checkin for K6 Test

This commit is contained in:
Suphonchai Phoonsawat 2024-08-19 17:18:58 +07:00
parent e1533a5c23
commit 127f21dc43
3 changed files with 65 additions and 7 deletions

View file

@ -27,6 +27,27 @@ namespace BMA.EHR.Leave.Service.DTOs.CheckIn
public string? Remark { get; set; } = string.Empty;
}
public class FakeCheckTimeDto
{
public Guid? CheckInId { get; set; }
[Required]
public double Lat { get; set; } = 0;
[Required]
public double Lon { get; set; } = 0;
[Required]
public string POI { get; set; } = string.Empty;
[Required]
public bool IsLocation { get; set; } = true;
public string? LocationName { get; set; } = string.Empty;
public string? Remark { get; set; } = string.Empty;
}
public class CheckTimeDtoRB
{
public string Token { get; set; } = "";