Files
GenericStuff/CodeReviewApp/Models/ProductRequest.cs
2024-07-14 19:45:34 +07:00

16 lines
373 B
C#

namespace CodeReviewApp.Models;
public class ProductRequest
{
public string Name { get; set; }
public string Code { get; set; }
public Description Description { get; set; }
}
public class Description
{
public int Price { get; set; }
public string Currency { get; set; }
public string Metadata { get; set; }
public int ProductId { get; set; }
}