rdt-client/server/RdtClient.Data/Enums/TorrentStatus.cs
Roger Far cd6002b5d6 Upgrade packages
Moved C# code to file scoped namespaces
Merged Startup.cs and Program.cs
2022-04-30 11:22:15 -06:00

12 lines
No EOL
192 B
C#

namespace RdtClient.Data.Enums;
public enum TorrentStatus
{
Processing = 0,
WaitingForFileSelection = 1,
Downloading = 2,
Finished = 3,
Uploading = 4,
Error = 99
}