12 lines
299 B
C#
12 lines
299 B
C#
|
using Bunny.Dao.Entity.Base;
|
|||
|
|
|||
|
namespace Bunny.Dao.Vo.User;
|
|||
|
|
|||
|
public class LoginVo : BaseEntity
|
|||
|
{
|
|||
|
public string? UserName { get; set; }
|
|||
|
public string? Email { get; set; }
|
|||
|
public string? Phone { get; set; }
|
|||
|
public string? QrCode { get; set; }
|
|||
|
public string? Token { get; set; }
|
|||
|
}
|