erp-platform/api/src/Kurs.Platform.Application.Contracts/Intranet/VisitorDto.cs

24 lines
728 B
C#
Raw Normal View History

2025-10-29 10:20:21 +00:00
using System;
using Volo.Abp.Application.Dtos;
namespace Kurs.Platform.Intranet;
public class VisitorDto : FullAuditedEntityDto<Guid>
{
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; }
2025-10-29 10:20:21 +00:00
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; }
}