mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-07-01 08:46:14 -04:00
9 lines
104 B
C#
9 lines
104 B
C#
namespace Cleanuparr.Domain.Enums;
|
|
|
|
public enum JobTriggerMode
|
|
{
|
|
Schedule,
|
|
Webhook,
|
|
Both,
|
|
}
|