11 lines
379 B
C#
11 lines
379 B
C#
namespace CompanyManagment.App.Contracts.EmployeeDocuments;
|
|
|
|
public class EmployeeDocumentHistoryViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public long EmployeeDocumentsId { get; set; }
|
|
public string PicturePath { get; set; }
|
|
public DocumentItemLabel Label { get; set; }
|
|
public string EmployeeFullName { get; set; }
|
|
} |