Files
Backend-Api/CompanyManagment.App.Contracts/EmployeeDocuments/EmployeeDocumentItemViewModel.cs
2025-02-18 16:16:33 +03:30

20 lines
638 B
C#

using System;
using _0_Framework.Application;
namespace CompanyManagment.App.Contracts.EmployeeDocuments;
public class EmployeeDocumentItemViewModel
{
public long Id { get; set; }
public long EmployeeDocumentsId { get; set; }
public long MediaId { get; set; }
public string Gender { get; set; }
public string PicturePath { get; set; }
public DocumentStatus Status { get; set; }
public string StatusString { get; set; }
public string RejectionMessage { get; set; }
public DocumentItemLabel DocumentItemLabel { get; set; }
public DateTime CreationDateTime { get; set; }
public UserType UploaderType { get; set; }
}