mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 10:15:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			592 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			592 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace HaWeb.Models;
 | |
| 
 | |
| public class FileModel {
 | |
|     public string FileName { get; private set; }
 | |
|     public string Prefix { get; private set; }
 | |
|     public DateTime LastModified { get; private set; }
 | |
|     public bool IsUsed { get; private set; }
 | |
|     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) {
 | |
|         FileName = name;
 | |
|         IsUsed = isUsed;
 | |
|         LastModified = lastModified;
 | |
|         InProduction = inProduction;
 | |
|     }
 | |
| } | 
