dependencies

This commit is contained in:
2024-04-16 22:30:39 +01:00
parent 04a467dd83
commit 3af05fc034
23 changed files with 1617 additions and 185 deletions

View File

@ -0,0 +1,11 @@
using System.Collections.Generic;
namespace isnd.Services
{
public class FrameworkDependencyGroup
{
internal string FrameworkName { get; set; }
internal List<ShortDependencyInfo> Dependencies { get; set; }
}
}