using System; using System.Runtime.InteropServices; namespace Wayne.ForecourtControl { /// /// Data structure carrying the information of a physical tank after reconciliation /// [ComVisible(true)] public interface ITankReconciliation { /// /// Original transaction data /// string OriginalTransactionData { get; } } }