using Indotalent.Data.Abstracts; namespace Indotalent.Data.Entities; public class PayrollComponent : BaseEntity { public string? PayrollDetailId { get; set; } public PayrollDetail? PayrollDetail { get; set; } public string? ComponentName { get; set; } public string? ComponentType { get; set; } public decimal Amount { get; set; } public string? Description { get; set; } }