1
0
mirror of https://github.com/chylex/Code-Statistics.git synced 2025-10-29 03:24:21 +01:00
Files

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;
}
}
}