You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
484 B
19 lines
484 B
3 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
#nullable disable
|
||
|
|
||
|
namespace Teso_API.Models
|
||
|
{
|
||
|
public partial class DeletedProduct
|
||
|
{
|
||
|
public string ProductName { get; set; }
|
||
|
public string BusinessID { get; set; }
|
||
|
public string ProductDesc { get; set; }
|
||
|
public string ProductID { get; set; }
|
||
|
public string CategoryID { get; set; }
|
||
|
public double UnitPrice { get; set; }
|
||
|
public string ProductImage { get; set; }
|
||
|
}
|
||
|
}
|