You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
950 B
C#

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