Updated web ui to razor

This commit is contained in:
2025-04-22 23:40:00 +03:00
parent c548c6191d
commit 2d319f3d34
108 changed files with 983 additions and 168 deletions

View File

@@ -0,0 +1,9 @@
namespace WebUI_OLD.Models;
public class PluginDetailsViewModel
{
public string PluginName { get; set; }
public string Version { get; set; }
public string Description { get; set; }
public string Author { get; set; }
}