using System;
using System.Collections.Generic;
using System.Text;
namespace InABox.Core
{
///
/// Intended to be a class that is part of a post of a different , but is not itself.
/// We may need to track references for each item, and so the fragment allows that.
///
public interface IPostableFragment
{
///
/// Reference details like IDs or numbers so that we can match transactions.
///
string PostedReference { get; set; }
}
public interface IPostableFragment : IPostableFragment
where TPostable : IPostable
{
}
}