27 lines
548 B
C#
27 lines
548 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.Request
|
|
{
|
|
public class DrawBackCaseReq
|
|
{
|
|
/// <summary>
|
|
/// 案件id
|
|
/// </summary>
|
|
public string id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 退回类型
|
|
/// </summary>
|
|
public string drawback_type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 退回原因
|
|
/// </summary>
|
|
public string drawbackReason { get; set; }
|
|
}
|
|
}
|