mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 16:14:11 +00:00
9 lines
164 B
C#
9 lines
164 B
C#
namespace Lantean.QBitTorrentClient.Models
|
|
{
|
|
public enum PieceState
|
|
{
|
|
NotDownloaded = 0,
|
|
Downloading = 1,
|
|
Downloaded = 2,
|
|
}
|
|
} |