Files
qbtmud/Lantean.QBTMud/Models/Status.cs
2024-10-22 09:57:50 +01:00

20 lines
332 B
C#

namespace Lantean.QBTMud.Models
{
public enum Status
{
All,
Downloading,
Seeding,
Completed,
Resumed,
Paused,
Active,
Inactive,
Stalled,
StalledUploading,
StalledDownloading,
Checking,
Errored,
Stopped
}
}