2024-12-09 00:29:04 +00:00
|
|
|
namespace BotSharp.Abstraction.Crontab.Models;
|
2024-12-05 17:11:16 +00:00
|
|
|
|
|
|
|
|
public class ScheduleTaskArgs
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("cron_expression")]
|
|
|
|
|
public string Cron { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("topic")]
|
|
|
|
|
public string Topic { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("description")]
|
|
|
|
|
public string Description { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("script")]
|
|
|
|
|
public string Script { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("language")]
|
|
|
|
|
public string Language { get; set; } = null!;
|
|
|
|
|
}
|