10 lines
174 B
C#
10 lines
174 B
C#
![]() |
namespace MareSynchronos.WebAPI.Files.Models;
|
|||
|
|
|||
|
public enum DownloadStatus
|
|||
|
{
|
|||
|
Initializing,
|
|||
|
WaitingForSlot,
|
|||
|
WaitingForQueue,
|
|||
|
Downloading,
|
|||
|
Decompressing
|
|||
|
}
|