namespace TIAMWebApp.Shared.Application.Models
{
public class ProductDTO
public int Id { get; set; }
public string ProductName { get; set; }
public int SupplierId { get; set; }
public int CategoryId { get; set; }
}