11 lines
188 B
C#
11 lines
188 B
C#
namespace LightlessSync.WebAPI.Files.Models;
|
|
|
|
public enum DownloadStatus
|
|
{
|
|
Initializing,
|
|
WaitingForSlot,
|
|
WaitingForQueue,
|
|
Downloading,
|
|
Decompressing,
|
|
Completed
|
|
} |