11 lines
308 B
C#
11 lines
308 B
C#
namespace Flawless.Abstraction;
|
|
|
|
/// <summary>
|
|
/// Standardized interface for any platform to describe data block (Not the actual data) in repository.
|
|
/// </summary>
|
|
public interface IDepotLabel
|
|
{
|
|
public abstract HashId Id { get; }
|
|
|
|
public abstract IEnumerable<HashId> Dependencies { get; }
|
|
} |