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; } } }