9 lines
201 B
C#
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);
|
|
}
|
|
} |