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