PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/BindingModels/CookBindingModel.cs
Алина Батылкина 6d3c7c0a5d models and contracts are ready
2023-04-07 21:53:52 +04:00

19 lines
453 B
C#

using CanteenDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenContracts.BindingModels
{
public class CookBindingModel : ICookModel
{
public int Id { get; set; }
public int ManagerId { get; set; }
public string FIO { get; set; } = string.Empty;
public string Position { get; set; } = string.Empty;
}
}