17 lines
455 B
C#
17 lines
455 B
C#
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; }
|
|
}
|
|
}
|