23 lines
562 B
C#
23 lines
562 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 ProductBindingModel : IProductModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string ProductName { get; set; } = string.Empty;
|
|
|
|
public double Cost { get; set; }
|
|
|
|
public DateTime? ExpirationDate { get; set; }
|
|
|
|
public string Category { get; set; } = string.Empty;
|
|
}
|
|
}
|