mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
20 lines
317 B
C#
20 lines
317 B
C#
namespace Lantean.QBTMud.Models
|
|
{
|
|
public enum Status
|
|
{
|
|
All,
|
|
Downloading,
|
|
Seeding,
|
|
Completed,
|
|
Paused,
|
|
Stopped,
|
|
Active,
|
|
Inactive,
|
|
Stalled,
|
|
StalledUploading,
|
|
StalledDownloading,
|
|
Checking,
|
|
Errored,
|
|
}
|
|
}
|