mirror of
https://github.com/chylex/Code-Statistics.git
synced 2024-11-24 12:42:46 +01:00
15 lines
333 B
C#
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;
|
|
}
|
|
}
|
|
} |