|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WGShare.Domain.DTOs.Login
|
|
{
|
|
public class UserLoginDTO
|
|
{
|
|
public string Account { get; set; }
|
|
public string Pwd { get; set; }
|
|
}
|
|
}
|