2023-08-17 12:43:47 +07:00
|
|
|
|
namespace BMA.EHR.Application.Responses
|
|
|
|
|
|
{
|
|
|
|
|
|
public class KeyValueItemResponse
|
|
|
|
|
|
{
|
2024-07-01 16:11:19 +07:00
|
|
|
|
public Guid? Id { get; set; } = Guid.Empty;
|
2023-08-17 12:43:47 +07:00
|
|
|
|
|
2024-07-01 16:11:19 +07:00
|
|
|
|
public string? Name { get; set; } = string.Empty;
|
2023-08-17 12:43:47 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|