using System.Net; using BMA.EHR.Recurit.Exam.Service.Models; namespace BMA.EHR.Recurit.Exam.Service.Request { public class RequestStatusRegistry { public bool Consend { get; set; } public bool Position { get; set; } public bool Bank { get; set; } public bool Payment { get; set; } public string? Status { get; set; } public PositionExam? PositionExam { get; set; } } }