Add Fake Checkin for K6 Test
This commit is contained in:
parent
e1533a5c23
commit
127f21dc43
3 changed files with 65 additions and 7 deletions
|
|
@ -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; } = "";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue