2024-12-03 22:52:14 +00:00
|
|
|
namespace BotSharp.Core.Crontab.Models;
|
|
|
|
|
|
2024-12-05 17:11:16 +00:00
|
|
|
public class CrontabItem : ScheduleTaskArgs
|
2024-12-03 22:52:14 +00:00
|
|
|
{
|
|
|
|
|
public string UserId { get; set; } = null!;
|
|
|
|
|
public string AgentId { get; set; } = null!;
|
2024-12-05 17:11:16 +00:00
|
|
|
public string ConversationId { get; set; } = null!;
|
|
|
|
|
public string ExecutionResult { get; set; } = null!;
|
2024-12-03 22:52:14 +00:00
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
2024-12-05 17:11:16 +00:00
|
|
|
return $"{Topic}: {Description} [AgentId: {AgentId}, UserId: {UserId}]";
|
2024-12-03 22:52:14 +00:00
|
|
|
}
|
|
|
|
|
}
|