Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.DTOModel/LoginDto.cs
2022-04-07 22:48:10 +08:00

15 lines
284 B
C#

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; }
}
}