wabbajack/Compression.BSA/Interfaces/IFolder.cs

14 lines
244 B
C#
Raw Normal View History

2020-08-11 15:24:02 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Compression.BSA
{
public interface IFolder
{
string Name { get; }
IEnumerable<IFile> Files { get; }
int FileCount { get; }
}
}