Add Org and Approver Api

This commit is contained in:
Suphonchai Phoonsawat 2023-08-17 12:43:47 +07:00
parent 3c11d1b5a1
commit 5c5c85a120
3 changed files with 126 additions and 3 deletions

View file

@ -0,0 +1,9 @@
namespace BMA.EHR.Application.Responses
{
public class KeyValueItemResponse
{
public Guid Id { get; set; } = Guid.Empty;
public string Name { get; set; } = string.Empty;
}
}