feat: Added Product controller and endpoints (Service Layer)
This commit is contained in:
		
							
								
								
									
										11
									
								
								Core.Inventory.External/Clients/Requests/ProductRequest.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								Core.Inventory.External/Clients/Requests/ProductRequest.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| namespace Core.Inventory.External.Clients.Requests | ||||
| { | ||||
|     public class ProductRequest | ||||
|     { | ||||
|         public string TenantId { get; set; } = null!; | ||||
|         public string ProductName { get; set; } = null!; | ||||
|         public string Description { get; set; } = null!; | ||||
|         public string Status { get; set; } = null!; | ||||
|         public List<string> TagIds { get; set; } = new List<string>(); | ||||
|     } | ||||
| }  | ||||
		Reference in New Issue
	
	Block a user