23 lines
539 B
C#
23 lines
539 B
C#
using AccountingWarehouseProductsDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AccountingWarehouseProductsContracts.BindingModels
|
|
{
|
|
public class ShipmentBindingModel : IShipmentModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public DateTime? ShipmentDate { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
|
|
public string Recipient { get; set; } = string.Empty;
|
|
|
|
public int OrderId { get; set; }
|
|
}
|
|
}
|