6 lines
135 B
C#
6 lines
135 B
C#
namespace CompanyManagment.App.Contracts.Employee;
|
|
|
|
public class EditEmployee : CreateEmployee
|
|
{
|
|
public long Id { get; set; }
|
|
} |