namespace Unplugged.Segy { public interface IFileHeader { string Text { get; } FormatCode SampleFormat { get; } bool IsLittleEndian { get; } int SampleNumber { get; set; } int SampleInteral { get; set; } int GetValue(int position, int len); } }