using System; using System.Collections.Generic; using System.Linq; using System.Text; using gr2lib.core.typedefs; namespace gr2lib.core.interfaces { public interface IExporterInfo : INativePointer { string ExporterName { get; set; } granny_int32 ExporterMajorRevision { get; set; } granny_int32 ExporterMinorRevision { get; set; } granny_int32 ExporterCustomization { get; set; } granny_int32 ExporterBuildNumber { get; set; } IntPtr ExtendedData { get; set; } } }