Add Icon propertie in FurnitureBase and FurnitureVariant
This commit is contained in:
@@ -38,6 +38,10 @@ namespace Core.Adapters.Lib
|
|||||||
[BsonElement("variantIds")]
|
[BsonElement("variantIds")]
|
||||||
[JsonPropertyName("variantIds")]
|
[JsonPropertyName("variantIds")]
|
||||||
public List<string> VariantIds { get; set; } = new();
|
public List<string> VariantIds { get; set; } = new();
|
||||||
|
|
||||||
|
[BsonElement("icon")]
|
||||||
|
[JsonPropertyName("icon")]
|
||||||
|
public string Icon { get; set; } = null!;
|
||||||
}
|
}
|
||||||
|
|
||||||
public class Dimensions
|
public class Dimensions
|
||||||
|
|||||||
@@ -22,5 +22,9 @@ namespace Core.Adapters.Lib
|
|||||||
[BsonElement("line")]
|
[BsonElement("line")]
|
||||||
[JsonPropertyName("line")]
|
[JsonPropertyName("line")]
|
||||||
public string Line { get; set; } = null!;
|
public string Line { get; set; } = null!;
|
||||||
|
|
||||||
|
[BsonElement("icon")]
|
||||||
|
[JsonPropertyName("icon")]
|
||||||
|
public string Icon { get; set; } = null!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user