ASP.Net-基本CRUD-Model-UserInfo.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace WebProject.Model
{
    public class UserInfo
    {
        public int UserId { get; set; }
        public string UserName { get; set; }
        public string UserPwd { get; set; }
    }
}
 

猜你喜欢

转载自blog.csdn.net/dxm809/article/details/88792575