add raw file editing to configuration page in webfront

This commit is contained in:
RaidMax
2021-09-16 16:27:40 -05:00
parent 68c1151191
commit 33c63f01db
8 changed files with 307 additions and 81 deletions

View File

@ -0,0 +1,8 @@
namespace WebfrontCore.ViewModels
{
public class ConfigurationFileInfo
{
public string FileName { get; set; }
public string FileContent { get; set; }
}
}