checkpoint
This commit is contained in:
23
Alpm/FileList.cs
Normal file
23
Alpm/FileList.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user