25 lines
655 B
C#
25 lines
655 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FrontendWebApi.Models
|
|
{
|
|
public class User : Actor
|
|
{
|
|
public string userinfo_guid { get; set; }
|
|
public byte status { get; set; }
|
|
public string account { get; set; }
|
|
public string password { get; set; }
|
|
public string full_name { get; set; }
|
|
public string phone { get; set; }
|
|
public string tel { get; set; }
|
|
public string email { get; set; }
|
|
}
|
|
public class Login
|
|
{
|
|
public string account { get; set; }
|
|
//public string password { get; set; }
|
|
}
|
|
}
|