13 lines
262 B
C#
13 lines
262 B
C#
using System;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Sozsoft.Platform.Hr;
|
|
|
|
public class DepartmentDto : FullAuditedEntityDto<Guid>
|
|
{
|
|
public Guid? TenantId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public Guid? ParentId { get; set; }
|
|
}
|