Files
DotNetAlpm/Alpm/FileList.cs
2020-04-29 13:21:13 -04:00

23 lines
506 B
C#

using System.Collections;
using System.Collections.Generic;
namespace Foodsoft.Alpm
{
public class FileList : IReadOnlyList<File>
{
public IEnumerator<File> GetEnumerator()
{
throw new System.NotImplementedException();
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
public int Count { get; }
public File this[int index] => throw new System.NotImplementedException();
}
}