mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
12 lines
234 B
C#
12 lines
234 B
C#
namespace Lantean.QBitTorrentClient.Models
|
|
{
|
|
public enum ShareLimitAction
|
|
{
|
|
Default = -1, // special value
|
|
|
|
Stop = 0,
|
|
Remove = 1,
|
|
RemoveWithContent = 3,
|
|
EnableSuperSeeding = 2
|
|
}
|
|
} |