hrms-api-backend/BMA.EHR.Application/Responses/Profiles/GetProfileSalaryResultDto.cs

11 lines
290 B
C#

namespace BMA.EHR.Application.Responses.Profiles
{
public class GetProfileSalaryResultDto
{
public string Message { get; set; } = string.Empty;
public int Status { get; set; } = -1;
public List<GetProfileSalaryDto> Result { get; set; } = new();
}
}