10 lines
300 B
C#
10 lines
300 B
C#
namespace Models.Model.Backend;
|
|
|
|
public class QueueItem
|
|
{
|
|
public Unfiltered Unfiltered { get; init; }
|
|
public Filtered? Filtered { get; init; }
|
|
public ScannerResumeObject? ResumeObject { get; init; }
|
|
public Operations Operations { get; init; }
|
|
public DbType DbType { get; init; }
|
|
} |