udpate login.html

This commit is contained in:
backuppc
2025-07-10 14:36:05 +09:00
parent 43526a26ec
commit 26cb328f8f
31 changed files with 866 additions and 543 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FCOMMON.Models
{
public class UserModel
{
public string id { get; set; }
public string password { get; set; }
public string name { get; set; }
public string grade { get; set; }
public string email { get; set; }
public string hp { get; set; }
public string tel { get; set; }
}
}