hrms-api-exam/Response/PaymentImgResponse.cs

13 lines
268 B
C#
Raw Normal View History

using System.Net;
namespace BMA.EHR.Recurit.Exam.Service.Response
{
public class PaymentImgResponse
{
public string? PaymentImg { get; set; }
public string? RejectDetail { get; set; }
2025-01-31 14:17:36 +07:00
public Guid? CandidateId { get; set; }
}
}