Files
hamann-ausgabe-core/HaWeb/Models/FileModel.cs

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