This commit is contained in:
xyy
2026-04-12 16:46:55 +08:00
parent ea8e76bff4
commit e774c2374c
11 changed files with 303 additions and 47 deletions

8
Models/UserRole.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace MembranePoreTester.Models
{
public enum UserRole
{
Operator, // 操作员
Admin // 管理员
}
}