Files
DotNetAlpm/FileList.cs
2020-04-27 12:34:56 -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();
}
}