25 lines
579 B
C#
25 lines
579 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 StandBindingModel : IStandModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string StandName { get; set; } = string.Empty;
|
|
|
|
public DateTime? DeliveryDate { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
|
|
public int ProductId { get; set; }
|
|
|
|
public int SupplierId { get; set; }
|
|
}
|
|
}
|