using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DG.Kafka.Worker
{
internal class TaskConfig
{
///
/// 任务名称
///
public string? TaskName { get; set; }
///
/// 任务备注
///
public string? TaskRemarks { get; set; }
///
/// 是否启用
///
public bool Enable { get; set; }
///
/// 停止毫秒数
///
public int MilliSecondsDelay { get; set; }
}
}