Add Icon property to FurnitureBase and FurnitureVariant
This commit is contained in:
@@ -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!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user