PIbd-21_Medvedkov_Coursach/ComputerShopContracts/BindingModels/BatchBindingModel.cs

19 lines
398 B
C#
Raw Normal View History

2024-05-01 04:42:57 +04:00
using ComputerShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.BindingModels
{
public class BatchBindingModel : IBatchModel
{
public DateTime DateBatch { get; set; } = DateTime.Now;
public int ProductId { get; set; }
public int Id { get; set; }
}
}