Change Amount property to nullable int in GetProfileLeaveByKeycloakDto #2411

This commit is contained in:
Suphonchai Phoonsawat 2026-04-03 12:09:00 +07:00
parent 6b8eddcbc0
commit cef41506a8

View file

@ -13,7 +13,7 @@
public string Age { get; set; } = string.Empty;
public DateTime DateAppoint { get; set; }
public DateTime DateCurrent { get; set; }
public int Amount { get; set; }
public int? Amount { get; set; } = 0;
public string? TelephoneNumber { get; set; } = string.Empty;
public string Position { get; set; } = string.Empty;
public string PosLevel { get; set; } = string.Empty;