16 lines
299 B
C#
16 lines
299 B
C#
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; }
|
|
}
|