using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace VueWebApi.Models
|
{
|
public class User
|
{
|
public string guid { get; set; }
|
public int userid { get; set; }
|
public string usercode { get; set; }
|
public string username { get; set; }
|
public string password { get; set; }
|
public string usertype { get; set; }
|
}
|
}
|