1
0
2025-03-15 21:30:15 +08:00

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; }
}