namespace Flawless.Abstraction;
///
/// Standardized interface for any platform to describe data block (Not the actual data) in repository.
///
public interface IDepotLabel
{
public abstract HashId Id { get; }
public abstract IEnumerable Dependencies { get; }
}