using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PatientMan.Classes{ class clsChildInfo { public string ChildName { get; set; } public string ChildId { get; set; } public DateTime? ChildBod { get; set; } public string MotherName { get; set; } public string MotherId { get; set; } public string Regimen { get; set; } public int PregnantAge { get; set; } public string Sex { get; set; } public string ChildRegimen { get; set; } public double EmbrioAge { get; set; } public string FeedingType { get; set; } public DateTime CTXDate {get;set;} public DateTime PCRDate1 { get; set; } public string PCRResult1 { get; set; } public DateTime PCRDate2 { get; set; } public string PCRResult2 { get; set; } public DateTime HIV18Date { get; set; } public string HIV18Result { get; set; } } }