This commit is contained in:
454313500@qq.com
2021-03-25 20:44:12 +08:00
parent 06c32afa03
commit c62389a7c0
14 changed files with 1083 additions and 21 deletions

View File

@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Identity;
using System;
using System.Collections.Generic;
using System.Text;
namespace CC.Yi.Model
{
public class result_user : IdentityUser
{
//你可以在这里添加你额外需要的字段例如
//public int level { get; set; }
}
}