SGGL_HBAZ/SGGL/Model/HandleStep.cs

31 lines
507 B
C#
Raw Permalink Normal View History

2025-02-12 09:27:47 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
/// <summary>
/// 办理步骤项
/// </summary>
public class HandleStep
{
/// <summary>
/// 步骤ID
/// </summary>
public string Id
{
get;
set;
}
/// <summary>
/// 步骤名称
/// </summary>
public string Name
{
get;
set;
}
}
}