using System.Collections.Generic;
namespace Quadarax.Foundation.Core.Data.Transaction
{
///
/// Interface for a read-only collection of data transactions.
/// Provides access to a collection of change tracking events.
///
public interface IDataTransactionCollection : IReadOnlyCollection
{
}
}