Added Data

This commit is contained in:
2026-01-07 19:56:17 -05:00
parent 6a1fbeb409
commit 9114382318
7 changed files with 283 additions and 5 deletions

15
Data/ArchiveStatus.cs Normal file
View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace SaltMiner.Data;
public partial class ArchiveStatus
{
public int ArchiveStatusId { get; set; }
public string FileName { get; set; } = null!;
public string? CommentId { get; set; }
public string? LinkId { get; set; }
}