17 lines
515 B
C#
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;
|
|
}
|