using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GroundOrganizer { [Serializable] public struct DataS { public string Bore { get; set; } public string Base { get; set; } public double Sp { get; set; } public double Sr { get; set; } public double p { get; set; } public double Hc { get; set; } public double Hmin { get; set; } public double YIIu { get; set; } public List Z { get; set; } public List Alfa { get; set; } public List sig_zp { get; set; } public List sig_zy { get; set; } public List sig_zg { get; set; } public List E { get; set; } public List N { get; set; } } }