using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace SigmaDrawerElement { /// /// 压缩并编码后的二进制块 /// public class BinaryBlock { /// /// 压缩后总长度 /// [XmlAttribute] public int Length { get; set; } /// /// 存储行数 /// [XmlAttribute] public int Line { get; set; } /// /// 数据类型:dfg、SegY等 /// [XmlAttribute("Type")] public string DataType { get; set; } [XmlAttribute] public int IsCompress { get; set; } = 1; /// /// 解压后长度 /// [XmlAttribute] public int UncomLength { get; set; } } }