checkpoint

This commit is contained in:
2020-04-30 13:33:30 -04:00
parent 19a9fc06ba
commit 9bc522180d
21 changed files with 337 additions and 276 deletions

9
Alpm/IPackageList.cs Normal file
View File

@@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace Foodsoft.Alpm
{
public interface IPackageList<out T> : IEnumerable<T> where T : Package
{
public T? FindSatisfier(string depString);
}
}