10 lines
167 B
C#
10 lines
167 B
C#
namespace RdtClient.Data.Enums
|
|
{
|
|
public enum DownloadStatus
|
|
{
|
|
PendingDownload = 0,
|
|
Downloading,
|
|
Unpacking,
|
|
Finished
|
|
}
|
|
}
|