You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
547 B
C#
26 lines
547 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Admin.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// 实现IJob的类
|
|
/// </summary>
|
|
public class QuartzReflectionView
|
|
{
|
|
/// <summary>
|
|
/// 命名空间
|
|
/// </summary>
|
|
public string nameSpace { get; set; }
|
|
/// <summary>
|
|
/// 类名
|
|
/// </summary>
|
|
public string nameClass { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string remark { get; set; }
|
|
}
|
|
}
|