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