LANCommander/LANCommander.Server.ImportExport/Models/ImportItemInfo.cs
Pat Hartl 54400fdb10 Refactor server importers
Refactors server importers to better handle dependencies on other data in the queue.
2025-12-03 02:22:37 -06:00

13 lines
No EOL
386 B
C#

using LANCommander.SDK.Enums;
namespace LANCommander.Server.ImportExport.Models;
public class ImportItemInfo<T> : IImportItemInfo where T : class
{
public string Key { get; set; }
public ImportExportRecordType Type { get; set; }
public string Name { get; set; }
public bool Processed { get; set; }
public long Size { get; set; }
public T Record { get; set; }
}