@model LittleShop.DTOs.CreateVariantCollectionDto @{ ViewData["Title"] = "Create Variant Collection"; }

Create Variant Collection

Back to Collections
@Html.AntiForgeryToken()
Define properties as JSON array. Each property has a "name" and optional "values" array.
If "values" is null, users can enter freeform text. If "values" is an array, users select from dropdown.
Example: [{"name":"Size","values":["S","M","L"]},{"name":"Colour","values":null}]
Cancel
@section Scripts { @{await Html.RenderPartialAsync("_ValidationScriptsPartial");} }