Files
Mapo-IOB/SMGen/Components/FilesList.razor.cs
T
2023-07-25 11:54:11 +02:00

27 lines
856 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
using System.Net.Http;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Components.Authorization;
using Microsoft.AspNetCore.Components.Forms;
using Microsoft.AspNetCore.Components.Routing;
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.Web.Virtualization;
using Microsoft.JSInterop;
using SMGen;
using SMGen.Shared;
using SMGen.Components;
namespace SMGen.Components
{
public partial class FilesList
{
[Parameter]
public Dictionary<string, bool> FilesStatus { get; set; } = new Dictionary<string, bool>();
[Parameter]
public Dictionary<string, string> Files2Download { get; set; } = new Dictionary<string, string>();
}
}