39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
using System.Collections.ObjectModel;
|
|
using System;
|
|
using System.Text;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
using System;
|
|
using System.Collections.ObjectModel;
|
|
using System.IO;
|
|
using System.Windows;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using FileUploader.Models;
|
|
using Hopetry.Services;
|
|
namespace Hopytry
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// Interaction logic for MainWindow.xaml
|
|
/// </summary>
|
|
public partial class MainWindow : Window
|
|
{
|
|
private AppDbContext _db = new AppDbContext();
|
|
private MinioService _minioService;
|
|
public ObservableCollection<FileRecord> UploadQueue { get; } = new ObservableCollection<FileRecord>();
|
|
public bool ShutdownAfterUpload { get; set; }
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |