19 lines
530 B
C#
19 lines
530 B
C#
|
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; }
|
|||
|
public EquipmentReceivingStatus Status { get; set; } = EquipmentReceivingStatus.Неизвестен;
|
|||
|
|
|||
|
public DateTime? DateImplement { get; set; }
|
|||
|
}
|
|||
|
}
|