16 lines
358 B
C#
16 lines
358 B
C#
|
using SushiDataModels;
|
|||
|
|
|||
|
namespace SushiContracts.BindingModels
|
|||
|
{
|
|||
|
public class EmployeeBindingModel : IEmployeeModel
|
|||
|
{
|
|||
|
public string EmployeeName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string EmployeePosition { get; set; } = string.Empty;
|
|||
|
|
|||
|
public long EmployeePhone { get; set; }
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|