Admin.net框架
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
289 B

namespace Admin.NET.Core.Service;
public class JobOutput
{
/// <summary>
/// 作业信息
/// </summary>
public SysJobDetail JobDetail { get; set; }
/// <summary>
/// 触发器集合
/// </summary>
public List<SysJobTrigger> JobTriggers { get; set; }
}