1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

add raw file editing to configuration page in webfront

This commit is contained in:
RaidMax
2021-09-16 16:27:40 -05:00
parent 778bb34609
commit d2590c929a
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; }
}
}