2023-04-06 23:41:09 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using ComputerShopDataModels.Enums;
|
|
|
|
|
using ComputerShopDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace ComputerShopContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class EquipmentReceivingBindingModel : IEquipmentReceivingModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2023-05-20 08:34:33 +04:00
|
|
|
|
public int ClientId { get; set; }
|
2023-04-06 23:41:09 +04:00
|
|
|
|
public EquipmentReceivingStatus Status { get; set; } = EquipmentReceivingStatus.Неизвестен;
|
|
|
|
|
|
|
|
|
|
public DateTime? DateImplement { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|