21 lines
441 B
C#
21 lines
441 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CandyHouseContracts.ViewModels;
|
|
|
|
public class ProductViewModel
|
|
{
|
|
public required string Id { get; set; }
|
|
|
|
public required string ProductName { get; set; }
|
|
|
|
public required string ProductType { get; set; }
|
|
|
|
public string? ProductDescription { get; set; }
|
|
|
|
public double Price { get; set; }
|
|
}
|