11 lines
249 B
C#
11 lines
249 B
C#
|
|
namespace LY.App.Model
|
|||
|
|
{
|
|||
|
|
public class LoginModel
|
|||
|
|
{
|
|||
|
|
public string username { get; set; }
|
|||
|
|
public string password { get; set; }
|
|||
|
|
public string type { get; set; }
|
|||
|
|
public string vertifyCode { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|