Add Icon property to FurnitureBase and FurnitureVariant

This commit is contained in:
Oscar Morales
2025-09-03 14:50:08 -06:00
parent 6ec76fc975
commit 37b9888532
5 changed files with 5 additions and 1 deletions

View File

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

View File

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

View File

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

View File

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

View File

@@ -7,7 +7,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Core.Adapters.Lib" Version="1.0.0" /> <PackageReference Include="Core.Adapters.Lib" Version="1.0.1" />
<PackageReference Include="Lib.Architecture.BuildingBlocks" Version="1.0.0" /> <PackageReference Include="Lib.Architecture.BuildingBlocks" Version="1.0.0" />
<PackageReference Include="Refit" Version="8.0.0" /> <PackageReference Include="Refit" Version="8.0.0" />
</ItemGroup> </ItemGroup>