Files
Yi.Admin/CC.Yi.Model/result_user.cs

14 lines
296 B
C#
Raw Normal View History

2021-03-25 20:44:12 +08:00
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; }
}
}