Extensible_Portfolio_Site/EPS.SDK/Git/IGitObject.cs
2022-09-06 22:29:40 -07:00

19 lines
473 B
C#

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