Files
DotNetAlpm/Alpm/IPackageList.cs
2020-04-30 13:33:30 -04:00

9 lines
201 B
C#

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