initial commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using Indotalent.Data.Abstracts;
|
||||
using Indotalent.Data.Interfaces;
|
||||
|
||||
namespace Indotalent.Data.Entities;
|
||||
|
||||
public class LeaveBalance : BaseEntity, IHasAutoNumber, IMultiTenant
|
||||
{
|
||||
public string? AutoNumber { get; set; }
|
||||
|
||||
public string EmployeeId { get; set; } = string.Empty;
|
||||
public Employee? Employee { get; set; }
|
||||
public string LeaveCategoryId { get; set; } = string.Empty;
|
||||
public LeaveCategory? LeaveCategory { get; set; }
|
||||
public int Entitlement { get; set; }
|
||||
public int Used { get; set; }
|
||||
public int Pending { get; set; }
|
||||
public int Remaining { get; set; }
|
||||
public int Year { get; set; }
|
||||
public DateTime ValidFrom { get; set; }
|
||||
public DateTime ValidTo { get; set; }
|
||||
public int CarryForward { get; set; }
|
||||
public string? TenantId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user