Created FileList with ability to set used files

This commit is contained in:
schnulller
2022-06-07 16:14:27 +02:00
parent 715cf167a0
commit d8155e26f6
44 changed files with 1468 additions and 119 deletions

View File

@@ -8,10 +8,10 @@ public class FileModel {
public bool InProduction { get; private set; }
public List<(string, string?)>? Fields { get; set; }
public FileModel(string name, string prefix, DateTime lastModified, bool isUSed, bool inProduction) {
public FileModel(string name, string prefix, DateTime lastModified, bool isUsed, bool inProduction) {
FileName = name;
IsUsed = IsUsed;
IsUsed = isUsed;
LastModified = lastModified;
InProduction = InProduction;
InProduction = inProduction;
}
}