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