fix bug upload

api ออกคำสั่ง
ส่ง inbox and noti
This commit is contained in:
Suphonchai Phoonsawat 2023-08-08 15:05:53 +07:00
parent 9ff5725be4
commit c99cb5344e
11 changed files with 13843 additions and 4 deletions

View file

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