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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/ViewModels/QuartzReflectionViewModel.cs

21 lines
495 B

namespace Tiobon.Core.Model.ViewModels
{
/// <summary>
/// 实现IJob的类
/// </summary>
public class QuartzReflectionViewModel
{
/// <summary>
/// 命名空间
/// </summary>
public string nameSpace{ get; set; }
/// <summary>
/// 类名
/// </summary>
public string nameClass { get; set; }
/// <summary>
/// 备注
/// </summary>
public string remark { get; set; }
}
}