add webtestversion

This commit is contained in:
backuppc
2025-07-09 17:40:50 +09:00
parent 99b1c3ff8e
commit b4183e8283
30 changed files with 4801 additions and 2827 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Project.Web.Model
{
public class GroupUserModel
{
public string Gcode { get; set; }
public string uid { get; set; }
}
public class UserModel
{
public string uid { get; set; }
public string password { get; set; }
}
public class PageModel
{
public List<KeyValuePair<string, object>> RouteData { get; set; }
public string urlcontrol { get; set; }
public string urlaction { get; set; }
}
}