Skip to content

Instantly share code, notes, and snippets.

@mortezadalil
Created March 24, 2022 13:17
Show Gist options
  • Save mortezadalil/2d488c059c8e3fefad073376c1b0c818 to your computer and use it in GitHub Desktop.
Save mortezadalil/2d488c059c8e3fefad073376c1b0c818 to your computer and use it in GitHub Desktop.
namespace Discount.Api.Models
{
public class Price
{
public int Id { get; set; }
public string ProductName { get; set; }
public int ProductId { get; set; }
public long Amount { get; set; }
public long CurrentAmount { get; set; }
public DateTime CreatedDate { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment