using System.Collections.Generic; namespace AsmdefGraph.Editor { public class AsmdefDependency { public string DependsFrom { get; } public IEnumerable DependsTo { get; } public AsmdefDependency(string key, IEnumerable value) { DependsFrom = key; DependsTo = value; } } }