Files
qbtmud/Lantean.QBitTorrentClient/Models/PieceState.cs
2024-04-22 14:15:07 +01:00

9 lines
164 B
C#

namespace Lantean.QBitTorrentClient.Models
{
public enum PieceState
{
NotDownloaded = 0,
Downloading = 1,
Downloaded = 2,
}
}