Compare commits
3 Commits
e81551e5d1
...
developmen
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
051ce0c89e | ||
| d66a0241df | |||
| f8fbcfe26d |
@@ -38,6 +38,10 @@ namespace Core.Adapters.Lib
|
||||
[BsonElement("variantIds")]
|
||||
[JsonPropertyName("variantIds")]
|
||||
public List<string> VariantIds { get; set; } = new();
|
||||
|
||||
[BsonElement("icon")]
|
||||
[JsonPropertyName("icon")]
|
||||
public string Icon { get; set; } = null!;
|
||||
}
|
||||
|
||||
public class Dimensions
|
||||
|
||||
@@ -22,5 +22,9 @@ namespace Core.Adapters.Lib
|
||||
[BsonElement("line")]
|
||||
[JsonPropertyName("line")]
|
||||
public string Line { get; set; } = null!;
|
||||
|
||||
[BsonElement("icon")]
|
||||
[JsonPropertyName("icon")]
|
||||
public string Icon { get; set; } = null!;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -42,10 +42,10 @@ namespace Core.Adapters.Lib.Inventory
|
||||
/// <summary>
|
||||
/// Gets or sets the status of the product. Stored as a string in MongoDB.
|
||||
/// </summary>
|
||||
[BsonElement("status")]
|
||||
[JsonPropertyName("status")]
|
||||
[BsonElement("productStatus")]
|
||||
[JsonPropertyName("productStatus")]
|
||||
[BsonRepresentation(BsonType.String)]
|
||||
public ProductStatus Status { get; set; }
|
||||
public ProductStatus ProductStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the list of Tag Ids associated with this product.
|
||||
|
||||
9
nuget.config
Normal file
9
nuget.config
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<packageSources>
|
||||
<!-- Tu BaGet primero -->
|
||||
<add key="BaGet" value="https://nuget.dream-views.com/v3/index.json" protocolVersion="3" />
|
||||
<!-- NuGet oficial como fallback (si quieres) -->
|
||||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
|
||||
</packageSources>
|
||||
</configuration>
|
||||
Reference in New Issue
Block a user