-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGetEmployeesViewModel.cs
More file actions
74 lines (61 loc) · 2.11 KB
/
Copy pathGetEmployeesViewModel.cs
File metadata and controls
74 lines (61 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
namespace TalentManagementAPI.Application.Features.Employees.Queries.GetEmployees
{
/// <summary>
/// Represents a view model for the GetEmployees query.
/// </summary>
public class GetEmployeesViewModel
{
/// <summary>
/// Gets or sets the ID of the employee.
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Gets or sets the first name of the employee.
/// </summary>
public string FirstName { get; set; }
/// <summary>
/// Gets or sets the middle name of the employee.
/// </summary>
public string MiddleName { get; set; }
/// <summary>
/// Gets or sets the last name of the employee.
/// </summary>
public string LastName { get; set; }
/// <summary>
/// Gets or sets the birthday of the employee.
/// </summary>
public DateTime Birthday { get; set; }
/// <summary>
/// Gets or sets the email address of the employee.
/// </summary>
public string Email { get; set; }
/// <summary>
/// Gets or sets the gender of the employee.
/// </summary>
public Gender Gender { get; set; }
/// <summary>
/// Gets or sets the employee number.
/// </summary>
public string EmployeeNumber { get; set; }
/// <summary>
/// Gets or sets the prefix of the employee's name.
/// </summary>
public string Prefix { get; set; }
/// <summary>
/// Gets or sets the phone number of the employee.
/// </summary>
public string Phone { get; set; }
/// <summary>
/// Gets or sets the position held by the employee.
/// </summary>
public virtual Position Position { get; set; }
/// <summary>
/// Gets or sets the employee's home department identifier.
/// </summary>
public Guid DepartmentId { get; set; }
/// <summary>
/// Gets or sets the salary of the employee.
/// </summary>
public decimal Salary { get; set; }
}
}