NCrontab icon indicating copy to clipboard operation
NCrontab copied to clipboard

Add common const cron expressions in a class that could be extended.

Open ptjuanramos opened this issue 3 years ago • 0 comments

Adding the follow most common cron expressions:

public const string Daily = "0 0 * * *";
public const string Hourly = "0 * * * *";
public const string Weekly = "0 0 * * 0";
public const string Monthly = "0 0 1 * *";

Written in a non sealed class in order to make the class extendable.

ptjuanramos avatar Mar 27 '21 19:03 ptjuanramos