Fixes in code
This commit is contained in:
		| @@ -9,31 +9,31 @@ namespace Core.Adapters.Lib.Inventory | ||||
|     { | ||||
|         [BsonElement("modelName")] | ||||
|         [JsonPropertyName("modelName")] | ||||
|         public string ModelName { get; set; } | ||||
|         public string ModelName { get; set; } = null!; | ||||
|  | ||||
|         [BsonElement("material")] | ||||
|         [JsonPropertyName("material")] | ||||
|         public string Material { get; set; } | ||||
|         public string Material { get; set; } = null!; | ||||
|  | ||||
|         [BsonElement("condition")] | ||||
|         [JsonPropertyName("condition")] | ||||
|         public string Condition { get; set; } | ||||
|         public string Condition { get; set; } = null!; | ||||
|  | ||||
|         [BsonElement("dimensions")] | ||||
|         [JsonPropertyName("dimensions")] | ||||
|         public Dimensions Dimensions { get; set; } | ||||
|         public Dimensions Dimensions { get; set; } = null!; | ||||
|  | ||||
|         [BsonElement("baseDescription")] | ||||
|         [JsonPropertyName("baseDescription")] | ||||
|         public string BaseDescription { get; set; } | ||||
|         public string BaseDescription { get; set; } = null!; | ||||
|  | ||||
|         [BsonElement("representation")] | ||||
|         [JsonPropertyName("representation")] | ||||
|         public string Representation { get; set; } | ||||
|         public string Representation { get; set; } = null!; | ||||
|  | ||||
|         [BsonElement("maintenanceNotes")] | ||||
|         [JsonPropertyName("maintenanceNotes")] | ||||
|         public string MaintenanceNotes { get; set; } | ||||
|         public string MaintenanceNotes { get; set; } = null!; | ||||
|     } | ||||
|  | ||||
|     public class Dimensions | ||||
|   | ||||
		Reference in New Issue
	
	Block a user