24 lines
464 B
C#
24 lines
464 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
/// 诊断诊断详情帮助类
|
|
/// </summary>
|
|
public class DiagnosisDetailAndDiagnosisModel
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public int parentId { get; set; }
|
|
|
|
public string parentName { get; set; }
|
|
|
|
}
|
|
}
|