17 lines
419 B
C#
17 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CandyHouseContracts.BindingModels;
|
|
|
|
public class ProductBindingModel
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? ProductName { get; set; }
|
|
public string? ProductDescription { get; set; }
|
|
public double Price { get; set; }
|
|
public string? ProductType { get; set; }
|
|
}
|