18 lines
550 B
C#
18 lines
550 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
|
|
[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false, ElementName = "root")]
|
|
public class ApoplexyReportDTOList
|
|
{
|
|
[System.Xml.Serialization.XmlElement(ElementName = "row")]
|
|
public ApoplexyReportDTO ApoplexyReportList { get; set; }
|
|
}
|
|
}
|