sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Intranet/JobPositionDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

24 lines
722 B
C#

using System;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Platform.Intranet;
public class JobPositionDto : FullAuditedEntityDto<string>
{
public Guid? TenantId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public Guid? DepartmentId { get; set; }
public string DepartmentName { get; set; }
public string Level { get; set; }
public decimal MinSalary { get; set; }
public decimal MaxSalary { get; set; }
public string Currency { get; set; }
public string RequiredSkills { get; set; }
public string Responsibilities { get; set; }
public string Qualifications { get; set; }
public bool IsActive { get; set; }
}