18 lines
448 B
C#
18 lines
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Dto
|
|
{
|
|
public class ProfessionDepartmentDto
|
|
{
|
|
public string? DepartmentName { get; set; }
|
|
public int DepartmentSort { get; set; }
|
|
public int DepartmentType { get; set; }
|
|
public string DepartmentCode { get; set; }
|
|
public int IsDeleted { get; set; }
|
|
}
|
|
}
|