Adding of archive items is mostly operational. Need to handle file upload

This commit is contained in:
Vincent Allen
2025-07-29 16:16:42 -04:00
parent 167a8f6fc6
commit a28663441e
158 changed files with 2628 additions and 801 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenArchival.Database;
public class FileInfo
{
public int Id { get; set; }
public required string Filename { get; set; }
public required string Path { get; set; }
}