1
0
Fork 0
Code-Statistics/CodeStatisticsCore/Input/IOEntry.cs

15 lines
333 B
C#

namespace CodeStatisticsCore.Input{
public struct IOEntry{
public enum Type{
File, Folder
}
public readonly Type EntryType;
public readonly string Path;
public IOEntry(Type type, string path){
this.EntryType = type;
this.Path = path;
}
}
}