Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.DTOModel/Base/Dto/LoginDto.cs
2023-01-05 20:32:58 +08:00

19 lines
409 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.DtoModel.Base.Dto
{
public class LoginDto
{
public string UserName { get; set; }=string.Empty;
public string Password { get; set; } = string.Empty;
public string? Uuid { get; set; }
public string? Code { get; set; }
}
}