20 lines
476 B
C#
20 lines
476 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FCOMMON.Models
|
|
{
|
|
public class UserModel
|
|
{
|
|
public string id { get; set; }
|
|
public string password { get; set; }
|
|
public string name { get; set; }
|
|
public string grade { get; set; }
|
|
public string email { get; set; }
|
|
public string hp { get; set; }
|
|
public string tel { get; set; }
|
|
}
|
|
}
|