Files
blazor-hrm/Data/Entities/EmployeeIncome.cs
T
2026-07-21 14:08:10 +07:00

17 lines
515 B
C#

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;
}