Add Icon property to FurnitureBase and FurnitureVariant

This commit is contained in:
Oscar Morales
2025-09-03 14:52:15 -06:00
parent a858e5e5de
commit 8f64fd51c0
10 changed files with 20 additions and 15 deletions

View File

@@ -15,5 +15,6 @@ namespace Core.Inventory.External.Clients.Adapters
public Dimensions Dimensions { get; set; } = new();
public List<string>? VariantIds { get; set; }
public string Icon { get; set; } = null!;
}
}

View File

@@ -17,5 +17,6 @@
public string ProviderId { get; set; } = string.Empty!;
public Dictionary<string, string> Attributes { get; set; } = [];
public string Icon { get; set; } = null!;
}
}

View File

@@ -10,8 +10,8 @@ namespace Core.Inventory.External.Clients.Requests
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; }
public string Icon { get; set; } = null!;
}
}

View File

@@ -15,5 +15,7 @@
public string ProviderId { get; set; } = string.Empty!;
public Dictionary<string, string> Attributes { get; set; } = [];
public string Icon { get; set; } = null!;
}
}