First version of Service
This commit is contained in:
		| @@ -0,0 +1,17 @@ | ||||
| using Core.Adapters.Lib; | ||||
|  | ||||
| namespace Core.Inventory.External.Clients.Requests | ||||
| { | ||||
|     public class FurnitureBaseRequest | ||||
|     { | ||||
|         public string ModelName { get; set; } = null!; | ||||
|         public string Material { get; set; } = null!; | ||||
|         public string Condition { get; set; } = null!; | ||||
|         public string? BaseDescription { get; set; } | ||||
|         public string? Representation { get; set; } | ||||
|         public string? MaintenanceNotes { get; set; } | ||||
|  | ||||
|         public Dimensions Dimensions { get; set; } = new(); | ||||
|         public List<string>? VariantIds { get; set; } | ||||
|     } | ||||
| } | ||||
| @@ -0,0 +1,19 @@ | ||||
| namespace Core.Inventory.External.Clients.Requests | ||||
| { | ||||
|     public class FurnitureVariantRequest | ||||
|     { | ||||
|         public string ModelId { get; set; } = null!; | ||||
|         public string Name { get; set; } = null!; | ||||
|         public string Color { get; set; } = null!; | ||||
|         public string? Line { get; set; } | ||||
|  | ||||
|         public decimal Price { get; set; } | ||||
|         public string Currency { get; set; } = "USD"; | ||||
|         public int Stock { get; set; } | ||||
|  | ||||
|         public Guid CategoryId { get; set; } | ||||
|         public Guid ProviderId { get; set; } | ||||
|  | ||||
|         public Dictionary<string, object> Attributes { get; set; } = []; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user