namespace ExtensiblePortfolioSite.SDK.Git
{
///
/// Represents a Git Object Interface
///
public interface IGitObject
{
///
/// Gets the GitProvider for this object
///
IGitProvider Provider { get; }
///
/// Gets a Storeable Reference to this Object (Should be forward-compatible)
///
GitReference GetReference();
}
}