Files
qbtmud/Lantean.QBTMud/Models/Status.cs
2025-10-21 14:20:25 +01:00

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,
}
}