PIbd-21_Medvedkov_Coursach/ComputerShopContracts/ViewModels/BatchViewModel.cs

26 lines
508 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.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.ViewModels
{
public class BatchViewModel : IBatchModel
{
[DisplayName("Дата партии")]
public DateTime DateBatch { get; set; } = DateTime.Now;
public int ProductId { get; set; }
[DisplayName("Номер")]
public int Id { get; set; }
}
}