Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created May 2, 2024 12:54
Show Gist options
  • Save icebeam7/145aaf70334b7aa5a6fcd2174f50483e to your computer and use it in GitHub Desktop.
Save icebeam7/145aaf70334b7aa5a6fcd2174f50483e to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace ProductsApp.Models
{
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public string ReleaseDate { get; set; }
public float OriginalPrice { get; set; }
public float Discount { get; set; }
public string PictureUrl { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment