mirror of
https://github.com/chylex/Code-Statistics.git
synced 2025-08-16 23:31:48 +02:00
CodeStatistics
CodeStatisticsCore
Collections
Handling
Input
File.cs
IOEntry.cs
IOUtils.cs
Properties
CodeStatisticsCore.csproj
CodeStatisticsTests
LanguageJava
.gitignore
CodeStatistics.sln
README.md
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;
|
|
}
|
|
}
|
|
} |