initial commit
This commit is contained in:
16
CodeReviewApp/Models/ProductRequest.cs
Normal file
16
CodeReviewApp/Models/ProductRequest.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user