AHTC/RGD/RGD.ZhiQianAPI/ZhiQianModel/CompleteOrder.cs

15 lines
342 B
C#
Raw Permalink Normal View History

2025-05-19 09:22:33 +08:00
namespace RGD.ZhiQianAPI.ZhiQianModel
{
/// <summary>
/// 完成下单接口,用来停止追加任务
/// </summary>
public class CompleteOrder
{
private int _taskid;
/// <summary>
/// 任务id
/// </summary>
public int taskid { get => _taskid; set => _taskid = value; }
}
}