CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/BindingModels/EquipmentReceivingBindingModel.cs

19 lines
530 B
C#
Raw Normal View History

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; }
}
}