hrms-api-backend/BMA.EHR.Application/Responses/Organizations/t2.cs

18 lines
455 B
C#
Raw Permalink Normal View History

2023-10-11 11:01:49 +07:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMA.EHR.Application.Responses.Organizations
{
public class t2
{
public Guid? deptID { get; set; }
public string? departmentName { get; set; }
public int? totalPositionCount { get; set; }
public int? totalPositionVacant { get; set; }
public Guid? parentId { get; set; }
}
}