This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace OpenAuth.App.Request
{
public class ChangeJobStatusReq
/// <summary>
/// 任务ID
/// </summary>
public string Id { get; set; }
/// 改变任务状态
/// 0:停止;1:启动(任务变成正在运行)
public int Status { get; set; }
}