14 lines
296 B
C#
14 lines
296 B
C#
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; }
|
|
}
|
|
}
|