21 lines
393 B
C#
21 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
public class DiagnosisDetailAndDiagnosisModelDTO
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public int parentId { get; set; }
|
|
|
|
public string parentName { get; set; }
|
|
|
|
}
|
|
}
|