Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.DTOModel/LoginDto.cs

19 lines
368 B
C#
Raw Normal View History

2022-04-07 22:48:10 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.DTOModel
{
public class LoginDto
{
public string UserName { get; set; }
public string Password { get; set; }
public string Uuid { get; set; }
public string Code { get; set; }
2022-04-07 22:48:10 +08:00
}
}