File: Models\Product.cs | Web Access |
Project: src\src\Mvc\test\WebSites\FilesWebSite\FilesWebSite.csproj (FilesWebSite) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace FilesWebSite.Models; public class Product { public string Name { get; set; } public IDictionary<string, IEnumerable<IFormFile>> Specs { get; set; } } |