18 lines
477 B
C#
18 lines
477 B
C#
using CandyHouseContracts.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CandyHouseContracts.BindingModels;
|
|
|
|
public class SuppliesBindingModel
|
|
{
|
|
public string? Id { get; set; }
|
|
public ProductType? ProductType { get; set; }
|
|
public DateTime ProductuionDate { get; set; }
|
|
public int Count { get; set; }
|
|
public List<ProductSuppliesBindingModel>? Products { get; set; }
|
|
}
|