14 lines
305 B
C#
14 lines
305 B
C#
using System.Net;
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Request
|
|
{
|
|
public class RequestAgency
|
|
{
|
|
public List<RequestCMSAgency> Agency { get; set; }
|
|
}
|
|
public class RequestCMSAgency
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Link { get; set; }
|
|
}
|
|
}
|