using Indotalent.Data.Abstracts; namespace Indotalent.Data.Entities; public class PayrollDetail : BaseEntity { public string? PayrollProcessId { get; set; } public PayrollProcess? PayrollProcess { get; set; } public string? EmployeeId { get; set; } public Employee? Employee { get; set; } public string? EmployeeCode { get; set; } public string? EmployeeName { get; set; } public decimal BasicSalary { get; set; } public decimal TotalIncome { get; set; } public decimal TotalDeduction { get; set; } public decimal TakeHomePay { get; set; } public virtual ICollection Components { get; set; } = new List(); }