rdt-client/server/RdtClient.Data/Enums/TorrentFinishedAction.cs
Roger Far fc15569e1b Rewrote the setting store, retrieve and displaying on the settings page to make maintenance a lot easier.
Added settings to set defaults for the provider import, sonarr, gui and watch folders.
2022-05-13 14:39:52 -06:00

15 lines
No EOL
313 B
C#

using System.ComponentModel;
namespace RdtClient.Data.Enums;
public enum TorrentFinishedAction
{
[Description("No Action")]
None = 0,
[Description("Remove Torrent From Client And Provider")]
RemoveAllTorrents = 1,
[Description("Remove Torrent From Provider")]
RemoveRealDebrid = 2
}