File: Data\StaticWebAssetEndpointsManifest.cs
Web Access
Project: ..\..\..\src\StaticWebAssetsSdk\Tasks\Microsoft.NET.Sdk.StaticWebAssets.Tasks.csproj (Microsoft.NET.Sdk.StaticWebAssets.Tasks)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
#nullable disable
 
namespace Microsoft.AspNetCore.StaticWebAssets.Tasks;
 
public class StaticWebAssetEndpointsManifest()
{
    public int Version { get; set; }
 
    public string ManifestType { get; set; }
 
    public StaticWebAssetEndpoint[] Endpoints { get; set; }
}