using Indotalent.Data.Abstracts; using Indotalent.Data.Interfaces; namespace Indotalent.Data.Entities; public class EmployeeIncome : BaseEntity, IHasAutoNumber { public string? AutoNumber { get; set; } public string? EmployeeId { get; set; } public Employee? Employee { get; set; } public string? IncomeId { get; set; } public Income? Income { get; set; } public decimal Amount { get; set; } public string? Description { get; set; } public bool IsActive { get; set; } = true; }