erp-platform/api/src/Erp.Platform.Domain/Entities/Tenant/Maintenance/PlanWizardEmployee.cs
2025-12-02 16:24:46 +03:00

18 lines
No EOL
491 B
C#

using System;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
namespace Erp.Platform.Entities;
public class PlanEmployee : FullAuditedEntity<Guid>, IMultiTenant
{
public Guid? TenantId { get; set; }
public Guid PlanWizardId { get; set; }
public PlanWizard PlanWizard { get; set; }
public Guid EmployeeId { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public string Description { get; set; }
}