mirror of
https://github.com/zoriya/flood.git
synced 2025-12-19 21:55:15 +00:00
16 lines
220 B
JavaScript
16 lines
220 B
JavaScript
const PriorityLevels = {
|
|
file: {
|
|
0: 'Don\'t Download',
|
|
1: 'Normal',
|
|
2: 'High'
|
|
},
|
|
torrent: {
|
|
0: 'Don\'t Download',
|
|
1: 'Low',
|
|
2: 'Normal',
|
|
3: 'High'
|
|
}
|
|
};
|
|
|
|
export default PriorityLevels;
|