using System; using Volo.Abp.Application.Dtos; namespace Erp.Platform.Intranet; public class VisitorDto : FullAuditedEntityDto { public Guid? TenantId { get; set; } public string FullName { get; set; } public string CompanyName { get; set; } public string Email { get; set; } public string PhoneNumber { get; set; } public string Purpose { get; set; } public DateTime VisitDate { get; set; } public DateTime? CheckIn { get; set; } public DateTime? CheckOut { get; set; } public Guid? EmployeeId { get; set; } public EmployeeDto Employee { get; set; } public string Status { get; set; } public string BadgeNumber { get; set; } public string Photo { get; set; } }